[TRIVIAL][PATCH] fix __FUNCTION__ pasting in iucv.c

From: Paul Larson (plars@linuxtestproject.org)
Date: Thu Aug 29 2002 - 14:19:47 EST


Trivial fix for __FUNCTION__ pasting in iucv.c against current bk tree.

-Paul Larson

# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
# ChangeSet 1.554 -> 1.555
# drivers/s390/net/iucv.c 1.11 -> 1.12
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 02/08/29 plars@austin.ibm.com 1.555
# fix __FUNCTION__ pasting in iucv.c
# --------------------------------------------
#
diff -Nru a/drivers/s390/net/iucv.c b/drivers/s390/net/iucv.c
--- a/drivers/s390/net/iucv.c Thu Aug 29 14:58:56 2002
+++ b/drivers/s390/net/iucv.c Thu Aug 29 14:58:56 2002
@@ -302,7 +302,7 @@
         if (debuglevel < 3)
                 return;
 
- printk(KERN_DEBUG __FUNCTION__ ": %s\n", title);
+ printk(KERN_DEBUG "%s: %s\n", __FUNCTION__, title);
         printk(" ");
         for (i = 0; i < len; i++) {
                 if (!(i % 16) && i != 0)
@@ -318,7 +318,7 @@
 #define iucv_debug(lvl, fmt, args...) \
 do { \
         if (debuglevel >= lvl) \
- printk(KERN_DEBUG __FUNCTION__ ": " fmt "\n" , ## args); \
+ printk(KERN_DEBUG "%s: " fmt "\n" , __FUNCTION__, ## args); \
 } while (0)
 
 #else

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Sat Aug 31 2002 - 22:00:27 EST