1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
--- src/core/rx_inflate.h.orig Tue Nov 22 22:47:05 2005
+++ src/core/rx_inflate.h Sat Nov 26 18:15:09 2005
@@ -46,7 +46,7 @@
struct rx_inflate_cb {
void (*add_rx_inflated)(gpointer owner, gint amount);
void (*inflate_error)(gpointer owner,
- const gchar *reason, ...) G_GNUC_PRINTF(2, 3);
+ const gchar *reason, ...) PRINTF_FUNC_PTR(2, 3);
};
/**
--- src/core/rx_chunk.h.orig Tue Nov 22 22:47:05 2005
+++ src/core/rx_chunk.h Sat Nov 26 18:15:09 2005
@@ -45,7 +45,7 @@
*/
struct rx_chunk_cb {
void (*chunk_error)(gpointer owner,
- const gchar *reason, ...) G_GNUC_PRINTF(2, 3);
+ const gchar *reason, ...) PRINTF_FUNC_PTR(2, 3);
void (*chunk_end)(gpointer owner);
};
--- src/core/rx_link.h.orig Tue Nov 22 22:47:05 2005
+++ src/core/rx_link.h Sat Nov 26 18:15:09 2005
@@ -46,7 +46,7 @@
struct rx_link_cb {
void (*add_rx_given)(gpointer owner, gint amount);
void (*read_error)(gpointer owner,
- const gchar *reason, ...) G_GNUC_PRINTF(2, 3);
+ const gchar *reason, ...) PRINTF_FUNC_PTR(2, 3);
void (*got_eof)(gpointer owner);
};
--- src/common.h.orig Tue Nov 22 22:47:03 2005
+++ src/common.h Sat Nov 26 18:15:08 2005
@@ -366,6 +366,16 @@
#define NON_NULL_PARAM(x) __attribute__((nonnull x))
#else /* GCC < 3.3 */
#define NON_NULL_PARAM(x)
+#endif
+
+/**
+ * This is the same G_GNUC_FORMAT() but for function pointers. Older versions
+ * of GCC do not allow function attributes for function pointers.
+ */
+#if HAVE_GCC(3, 0)
+#define PRINTF_FUNC_PTR(x, y) __attribute__((format(printf, (x), (y))))
+#else /* GCC < 3.0 */
+#define PRINTF_FUNC_PTR(x, y)
#endif
/* Functions using this attribute cause a warning if the returned
|