From e232afda036cf77d458ed1c8e689981bc74d6217 Mon Sep 17 00:00:00 2001 From: Jeff Lenk Date: Tue, 2 Apr 2013 08:35:15 -0500 Subject: [PATCH] windows compiler warnings missed this --- libs/srtp/crypto/hash/null_auth.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/srtp/crypto/hash/null_auth.c b/libs/srtp/crypto/hash/null_auth.c index 103444bc53..1fa2660840 100644 --- a/libs/srtp/crypto/hash/null_auth.c +++ b/libs/srtp/crypto/hash/null_auth.c @@ -48,6 +48,10 @@ #include "null_auth.h" #include "alloc.h" +#ifdef _MSC_VER +#pragma warning(disable:4100) +#endif + /* null_auth uses the auth debug module */ extern debug_module_t mod_auth;