diff options
author | Hans Breuer <hans@breuer.org> | 2008-06-13 08:36:26 +0000 |
---|---|---|
committer | Hans Breuer <hans@src.gnome.org> | 2008-06-13 08:36:26 +0000 |
commit | 8677ed959d6c91f278151133106dc192a0662d54 (patch) | |
tree | df61d8ba076483dd8edc364042b490073c67df50 /gtk/gtkfilesystem.c | |
parent | e0c1ab3f39aff64d3b00a66263a8592243ea4076 (diff) | |
download | gtk+-8677ed959d6c91f278151133106dc192a0662d54.tar.gz |
check surface status after ceating a pdf. Avoids crashing when the target
2008-05-23 Hans Breuer <hans@breuer.org>
* gtk/gtkprintoperation.c : check surface status after ceating a pdf.
Avoids crashing when the target can not be written, bug #537685
* gdk/win32/gdkdisplay-win32.c : runtime linking of ProcessIdToSessionId
* gtk/gtkfilesystem.c : variadic macros are not supported with c89 and
it was not needed here anyway.
svn path=/trunk/; revision=20370
Diffstat (limited to 'gtk/gtkfilesystem.c')
-rw-r--r-- | gtk/gtkfilesystem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkfilesystem.c b/gtk/gtkfilesystem.c index 027f1bb49c..c78ae77d38 100644 --- a/gtk/gtkfilesystem.c +++ b/gtk/gtkfilesystem.c @@ -29,9 +29,9 @@ /* #define DEBUG_MODE */ #ifdef DEBUG_MODE -#define DEBUG(x...) g_debug (x); +#define DEBUG(x) g_debug (x); #else -#define DEBUG(x...) +#define DEBUG(x) #endif #define GTK_FILE_SYSTEM_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), GTK_TYPE_FILE_SYSTEM, GtkFileSystemPrivate)) |