use %u instead of %d

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

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2000, 2001, 2004, 2005, 2007, 2012, 2015, 2016 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001, 2004, 2005, 2007, 2012, 2015, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -54,11 +54,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

@@ -448,7 +448,7 @@
./bin/tests/entropy2_test.c C 2000,2001,2004,2005,2007,2015,2016,2018
./bin/tests/entropy_test.c C 2000,2001,2004,2005,2007,2015,2016,2018
./bin/tests/fromhex.pl PERL 2015,2016
./bin/tests/fsaccess_test.c C 2000,2001,2004,2005,2007,2012,2015,2016
./bin/tests/fsaccess_test.c C 2000,2001,2004,2005,2007,2012,2015,2016,2018
./bin/tests/hash_test.c C 2000,2001,2004,2005,2006,2007,2014,2015,2016,2017
./bin/tests/hashes/Makefile.in MAKE 2010,2012,2014,2016,2017
./bin/tests/hashes/t_hashes.c C 2010,2013,2016