2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

silence compiler warnings

This commit is contained in:
Mark Andrews
2005-03-16 22:22:31 +00:00
parent 66a12302e1
commit b6b21d8045
9 changed files with 27 additions and 27 deletions

View File

@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: wire_test.c,v 1.63 2004/03/05 04:58:40 marka Exp $ */
/* $Id: wire_test.c,v 1.64 2005/03/16 22:22:31 marka Exp $ */
#include <config.h>
@@ -140,10 +140,10 @@ main(int argc, char *argv[]) {
}
rp++;
}
if (len == 0)
if (len == 0U)
break;
if (len % 2 != 0) {
printf("bad input format: %d\n", len);
if (len % 2 != 0U) {
printf("bad input format: %lu\n", (unsigned long)len);
exit(1);
}
if (len > sizeof(b) * 2) {