Fixed compiler warning.
diff --git a/test/test.c b/test/test.c
index f890a4d..8782506 100644
--- a/test/test.c
+++ b/test/test.c
@@ -313,7 +313,7 @@
 
 void test_stream_mem(void)
 {
-    mz_zip_file file_info = { 0 };
+    mz_zip_file file_info;
     void *read_mem_stream = NULL;
     void *write_mem_stream = NULL;
     void *os_stream = NULL;
@@ -330,6 +330,8 @@
     char temp[120];
 
 
+    memset(&file_info, 0, sizeof(file_info));
+
     text_size = (int32_t)strlen(text_ptr);
 
     // Write zip to memory stream