use %u instead of %d

This commit is contained in:
Mark Andrews 2018-02-14 18:24:22 +11:00
parent dc96839baa
commit 61bccbcee7
2 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (C) 2004, 2005, 2007, 2012, 2015 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2004, 2005, 2007, 2012, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
@ -63,11 +63,11 @@ main(void) {
ISC_FSACCESS_READ | ISC_FSACCESS_WRITE,
&access);
printf("fsaccess=%d\n", access);
printf("fsaccess=%u\n", access);
isc_fsaccess_add(ISC_FSACCESS_OTHER, ISC_FSACCESS_READ, &access);
printf("fsaccess=%d\n", access);
printf("fsaccess=%u\n", access);
result = isc_fsaccess_set(PATH, access);
if (result != ISC_R_SUCCESS)

View file

@ -548,7 +548,7 @@
./bin/tests/entropy2_test.c C 2000,2001,2004,2005,2007,2015,2018
./bin/tests/entropy_test.c C 2000,2001,2004,2005,2007,2015,2018
./bin/tests/fromhex.pl PERL 2015
./bin/tests/fsaccess_test.c C 2000,2001,2004,2005,2007,2012,2015
./bin/tests/fsaccess_test.c C 2000,2001,2004,2005,2007,2012,2015,2018
./bin/tests/gxba_test.c C 2000,2001,2004,2005,2007,2015
./bin/tests/gxbn_test.c C 2000,2001,2004,2005,2007,2015
./bin/tests/hash_test.c C 2000,2001,2004,2005,2006,2007,2014,2015,2016,2017