diff options
author | J.R. Mauro <jrm8005@gmail.com> | 2008-11-13 19:11:22 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-01-06 13:52:07 -0800 |
commit | 1352b4b07fae399ae5741a9b6f155420e76a2b00 (patch) | |
tree | 397397233bc7d11a3f781ed74e15d3d28bacaf61 | |
parent | bb9eacccf63bd3ab5474c47abe4212f6f3b9d24f (diff) |
Staging: et131x: fix build failure
Fix build failure in et131x driver - missing \ in multiline macro
Signed-off by: J.R. Mauro <jrm8005@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/staging/et131x/et131x_debug.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/et131x/et131x_debug.h b/drivers/staging/et131x/et131x_debug.h index 4275638c0cc..994108eca66 100644 --- a/drivers/staging/et131x/et131x_debug.h +++ b/drivers/staging/et131x/et131x_debug.h @@ -206,10 +206,10 @@ #define DBG_ASSERT(C) \ do { \ if (!(C)) { \ - DBG_PRINT("ASSERT(%s) -- %s#%d (%s) ", \ + DBG_PRINT("ASSERT(%s) -- %s#%d (%s) ", \ #C, __FILE__, __LINE__, __func__); \ DBG_TRAP; \ - } + } \ } while (0) #define STATIC |