diff options
Diffstat (limited to 'tests/libntp/vi64ops.c')
-rw-r--r-- | tests/libntp/vi64ops.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/libntp/vi64ops.c b/tests/libntp/vi64ops.c index 0891299e52fd..10e04629d6cb 100644 --- a/tests/libntp/vi64ops.c +++ b/tests/libntp/vi64ops.c @@ -38,8 +38,8 @@ IsEqual(const vint64 expected, const vint64 actual) { void test_ParseVUI64_pos(void) { vint64 act, exp; - const char *sp; - char const *ep; + char *sp; + char *ep; sp = "1234x"; exp.D_s.hi = 0; @@ -54,8 +54,8 @@ test_ParseVUI64_pos(void) { void test_ParseVUI64_neg(void) { vint64 act, exp; - const char *sp; - char const *ep; + char *sp; + char *ep; sp = "-1234x"; exp.D_s.hi = ~0; @@ -68,8 +68,8 @@ test_ParseVUI64_neg(void) { void test_ParseVUI64_case(void) { vint64 act, exp; - const char *sp; - char const *ep; + char *sp; + char *ep; sp = "0123456789AbCdEf"; exp.D_s.hi = 0x01234567; |