1
0
Fork 0

[SCSI] fcoe: libfcoe: extra semicolon in CHECK_LOGGING macros causes compile error

If using code like this:
	if (foo)
		FCOE_DBG("foo\n);
	else
		FCOE_DBG("bar\n");

one gets compile errors because FCOE_DBG expands with its own semicolon,
making one too many for the if-statement.

Remove the offending semicolon in fcoe.h and also a similar case
in libfcoe.c.

Signed-off-by: Joe Eykholt <jeykholt@cisco.com>
Signed-off-by: Robert Love <robert.w.love@intel.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
hifive-unleashed-5.1
Joe Eykholt 2009-08-25 13:58:42 -07:00 committed by James Bottomley
parent cd305ce41b
commit a69b06bc5e
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ do { \
do { \
CMD; \
} while (0); \
} while (0);
} while (0)
#define FCOE_DBG(fmt, args...) \
FCOE_CHECK_LOGGING(FCOE_LOGGING, \

View File

@ -69,7 +69,7 @@ do { \
do { \
CMD; \
} while (0); \
} while (0);
} while (0)
#define LIBFCOE_DBG(fmt, args...) \
LIBFCOE_CHECK_LOGGING(LIBFCOE_LOGGING, \