Kaynağa Gözat

Fixed vs2008 compile error.

Branimir Karadžić 11 yıl önce
ebeveyn
işleme
13670dec96
1 değiştirilmiş dosya ile 1 ekleme ve 2 silme
  1. 1 2
      3rdparty/fcpp/cpp6.c

+ 1 - 2
3rdparty/fcpp/cpp6.c

@@ -481,9 +481,8 @@ char *savestring(struct Global *global, char *text)
   /*
    * Store a string into free memory.
    */
-  (void)global; // BK - not used but causes warning.
-
   char *result;
+  (void)global; // BK - not used but causes warning.
   result = malloc(strlen(text) + 1);
   strcpy(result, text);
   return (result);