View | Details | Raw Unified | Return to bug 214468 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-1 / +1 lines)
Lines 17-23 Link Here
17
USES=		gmake iconv pkgconfig
17
USES=		gmake iconv pkgconfig
18
USE_GNOME=	gtk20 intlhack
18
USE_GNOME=	gtk20 intlhack
19
GNU_CONFIGURE=	yes
19
GNU_CONFIGURE=	yes
20
USE_GCC=	yes
20
#USE_GCC=	yes
21
CONFIGURE_ARGS=	--prefix=${PREFIX}
21
CONFIGURE_ARGS=	--prefix=${PREFIX}
22
USE_LDCONFIG=	yes
22
USE_LDCONFIG=	yes
23
23
(-)files/patch-src_settings.c (+13 lines)
Line 0 Link Here
1
--- src/setting.c
2
+++ src/setting.c
3
@@ -251,7 +251,7 @@ void save_setting()
4
 /* Deep copy settings. */
5
 Setting * copy_setting(Setting * setting)
6
 {
7
-    g_return_if_fail (setting != NULL);
8
+    g_return_val_if_fail (setting != NULL, NULL);
9
 
10
     /* Allocate structure. */
11
     Setting * new_setting = g_slice_new0(Setting);
12
13

Return to bug 214468