From: Evan Hunt Date: Wed, 27 Feb 2013 21:52:30 +0000 (-0800) Subject: [master] silence warning due to incorrect assert X-Git-Tag: v9.10.0a1~473 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f79c13fed857f2b7e9e3ea6e8174424dc549616a;p=thirdparty%2Fbind9.git [master] silence warning due to incorrect assert --- diff --git a/lib/isc/unix/file.c b/lib/isc/unix/file.c index e30f85134e5..0e9a9a106ee 100644 --- a/lib/isc/unix/file.c +++ b/lib/isc/unix/file.c @@ -168,7 +168,7 @@ isc_file_getsize(const char *file, off_t *size) { struct stat stats; REQUIRE(file != NULL); - REQUIRE(time != NULL); + REQUIRE(size != NULL); result = file_stats(file, &stats);