]> git.hungrycats.org Git - linux/commitdiff
[PATCH] saa7134-core.c compile fix for old gcc
authorAndrew Morton <akpm@osdl.org>
Thu, 16 Oct 2003 00:34:56 +0000 (17:34 -0700)
committerLinus Torvalds <torvalds@home.osdl.org>
Thu, 16 Oct 2003 00:34:56 +0000 (17:34 -0700)
It is using token pasting in ways which confuse gcc-2.9x.

drivers/media/video/saa7134/saa7134-core.c

index 0fef080576c92bb9b066a3e34618ce09da261b9a..f1b1ae6b3c3c6a1b527e5cb9d62f9528a9dab268 100644 (file)
@@ -95,7 +95,7 @@ struct list_head  saa7134_devlist;
 unsigned int      saa7134_devcount;
 
 #define dprintk(fmt, arg...)   if (core_debug) \
-       printk(KERN_DEBUG "%s/core: " fmt, dev->name, ## arg)
+       printk(KERN_DEBUG "%s/core: " fmt, dev->name , ## arg)
 
 /* ------------------------------------------------------------------ */
 /* debug help functions                                               */