Spell out check for non-zero'ness

Signed-off-by: Hanno Becker <hanno.becker@arm.com>
diff --git a/library/ssl_msg.c b/library/ssl_msg.c
index 26f30b5..65eab4b 100644
--- a/library/ssl_msg.c
+++ b/library/ssl_msg.c
@@ -884,7 +884,7 @@
         /*
          * Prefix record content with dynamic IV in case it is explicit.
          */
-        if( dynamic_iv_is_explicit )
+        if( dynamic_iv_is_explicit != 0 )
         {
             if( rec->data_offset < dynamic_iv_len )
             {