From 51def0c381d4dc4e65a3ca7ef97ca2a65e16496f Mon Sep 17 00:00:00 2001 From: "kr.angelov" Date: Thu, 26 Jan 2012 08:58:03 +0000 Subject: [PATCH] libpgf: fix in string.h --- src/runtime/c/gu/string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/c/gu/string.h b/src/runtime/c/gu/string.h index 385b162ed..d6bb11b58 100644 --- a/src/runtime/c/gu/string.h +++ b/src/runtime/c/gu/string.h @@ -119,7 +119,7 @@ typedef GuSeq GuStrings; typedef GuMap GuStringMap; #define gu_new_string_map(VAL_T, DEFAULT, POOL) \ - gu_new_map(GuString, gu_string_hasher, (VAL_T), (DEFAULT), (POOL)) + gu_new_map(GuString, gu_string_hasher, VAL_T, (DEFAULT), (POOL)) #endif