blob: 7c1f4dd32ed712f59d662c9e51f8c144e47f0ee7 (
plain)
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
|
#
# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
#
--- unionfs-1.0.3/fist.h~gcc2 2004-11-10 09:38:58.000000000 -0500
+++ unionfs-1.0.3/fist.h 2004-11-14 05:11:47.601022344 -0500
@@ -212,11 +212,20 @@
} while (0)
/* Call if you encounter a bug. */
+
+#if __GNUC__ < 3
+#define FISTBUG(arg...) \
+do { \
+ printk("<0>FISTBUG " ##arg); \
+ (*((char *)0))=0; \
+} while (0)
+#else
#define FISTBUG(fmt, args...) \
do { \
printk("<0>FISTBUG at %s:%s:%d " fmt, __FILE__, __FUNCTION__, __LINE__, ##args); \
(*((char *)0))=0; \
} while (0);
+#endif
/* The if (0 ...) is so that we can make sure that you don't pass this
* define a non-pointer. gcc should optimize it away. */
|