From: Mark Andrews Date: Tue, 20 Feb 2018 01:57:29 +0000 (+1100) Subject: silence unread assignment warning by using POST macro X-Git-Tag: v9.9.13rc1~74^2~3 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=e76df9d04ffca40b2ab50fc52aa609daa5e187df;p=thirdparty%2Fbind9.git silence unread assignment warning by using POST macro (cherry picked from commit e8249dcd49296c408c9358c05f3a969b81634e65) (cherry picked from commit cdb6c5c106fed052f8695365900b625611515f72) --- diff --git a/lib/isc/win32/win32os.c b/lib/isc/win32/win32os.c index fa3372abc1b..f6aeeb34654 100644 --- a/lib/isc/win32/win32os.c +++ b/lib/isc/win32/win32os.c @@ -21,6 +21,7 @@ #include #else #include +#include #endif #include @@ -107,6 +108,7 @@ main(int argc, char **argv) { } if (argc > 1) { --argc; + POST(argc); ++argv; spminor = (unsigned int) atoi(argv[0]); }