From 13670dec96f5edf6decf6a5ad9a6a32f49825da2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Sun, 24 Aug 2014 10:37:32 -0700 Subject: [PATCH] Fixed vs2008 compile error. --- 3rdparty/fcpp/cpp6.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/3rdparty/fcpp/cpp6.c b/3rdparty/fcpp/cpp6.c index 1731c797..a0b0e051 100644 --- a/3rdparty/fcpp/cpp6.c +++ b/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);