1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
freebsd-ports/science/gdis/files/patch-grid.c
Martin Wilke 3867f31f21 - Update to 0.90
PR:		176549
Submitted by:	Ports Fury
2013-03-02 06:29:42 +00:00

21 lines
297 B
C

--- grid.c.orig
+++ grid.c
@@ -58,7 +58,7 @@
if (grid_table)
g_hash_table_replace(grid_table, g_strdup(name), g_strdup(value));
#else
-return(NULL);
+return;
#endif
}
@@ -80,7 +80,7 @@
if (grid_table)
g_hash_table_remove(grid_table, name);
#else
-return(NULL);
+return;
#endif
}