From: divverent Date: Wed, 27 Feb 2013 13:30:07 +0000 (+0000) Subject: fix another warning in crypto.c X-Git-Tag: xonotic-v0.8.0~96^2~128 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=30769c2833e2623ca3442b509dafbd0f7160af90;p=xonotic%2Fdarkplaces.git fix another warning in crypto.c git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11911 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/crypto.c b/crypto.c index c0f195ec..cf7cc5f2 100644 --- a/crypto.c +++ b/crypto.c @@ -1040,7 +1040,7 @@ void Crypto_Init(void) return; } - Crypto_Rijndael_OpenLibrary(); // if this fails, it's uncritical + (void) Crypto_Rijndael_OpenLibrary(); // if this fails, it's uncritical Crypto_InitHostKeys(); }