aboutsummaryrefslogtreecommitdiff
path: root/tests/libntp/numtohost.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libntp/numtohost.c')
-rw-r--r--tests/libntp/numtohost.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/libntp/numtohost.c b/tests/libntp/numtohost.c
index 7472f46f66fa..cfce2d8a309a 100644
--- a/tests/libntp/numtohost.c
+++ b/tests/libntp/numtohost.c
@@ -1,19 +1,20 @@
#include "config.h"
#include "ntp_stdlib.h"
-#include "ntp_calendar.h"
#include "ntp_fp.h"
#include "unity.h"
-void test_LoopbackNetNonResolve(void) {
+void test_LoopbackNetNonResolve(void);
+
+void
+test_LoopbackNetNonResolve(void) {
/* A loopback address in 127.0.0.0/8 is chosen, and
* numtohost() should not try to resolve it unless
* it is 127.0.0.1
*/
- u_int32 input = 127*256*256*256 + 1*256 + 1; // 127.0.1.1
+ const u_int32 input = 127*256*256*256 + 1*256 + 1; // 127.0.1.1
TEST_ASSERT_EQUAL_STRING("127.0.1.1", numtohost(htonl(input)));
}
-