On Thursday 05 February 2004 16:01, Michael Lambert wrote:
> Hello, everyone.
>
> I've been attempting to compile the 2.4.21 kernel with the latest
> patches from the june 2003 stream, as well as the 2.4.23 kernel with the
> experimental patches.

Yes, that's a trivial bug which gcc-3.x happen to ignore. The answer to
why the space in front of a comma can be significant is left as an
excercise to the reader. To fix this, apply this mail as a patch.

        Arnd <><

Index: ./drivers/s390/net/iucv.c
===================================================================
RCS file: /home/cvs/linux-2.3/drivers/s390/net/iucv.c,v
retrieving revision 1.45
diff -u -r1.45 iucv.c
--- ./drivers/s390/net/iucv.c   5 Feb 2004 14:40:12 -0000       1.45
+++ ./drivers/s390/net/iucv.c   5 Feb 2004 17:48:43 -0000
@@ -320,7 +320,7 @@
 #define iucv_debug(lvl, fmt, args...) \
 do { \
        if (debuglevel >= lvl) \
-               printk(KERN_DEBUG "%s: " fmt "\n", __FUNCTION__, ## args); \
+               printk(KERN_DEBUG "%s: " fmt "\n", __FUNCTION__ , ## args); \
 } while (0)

 #else

Reply via email to