From 1f833b3fc9968c3dd7ed79ccf0525ebf16c891ad Mon Sep 17 00:00:00 2001 From: Cy Schubert Date: Fri, 10 May 2024 08:15:56 -0700 Subject: ntp: Vendor import of ntp-4.2.8p18 --- tests/libntp/vi64ops.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'tests/libntp/vi64ops.c') 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; -- cgit v1.2.3