summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorWolfgang Denk <wd@atlas.denx.de>2006-10-09 00:42:01 +0200
committerWolfgang Denk <wd@atlas.denx.de>2006-10-09 00:42:01 +0200
commit511d0c72b82aab9b807efde50fc9e390365f5ca1 (patch)
tree08f47c77d9ce164bf38b937858c9d25344639950 /include
parent8d4ac794365a7abb1be8e050fd1b467b94a21865 (diff)
downloadbarebox-511d0c72b82aab9b807efde50fc9e390365f5ca1.tar.gz
barebox-511d0c72b82aab9b807efde50fc9e390365f5ca1.tar.xz
Coding style cleanup
Diffstat (limited to 'include')
-rw-r--r--include/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h
index bee2fb7022..a873fa99b7 100644
--- a/include/common.h
+++ b/include/common.h
@@ -110,7 +110,7 @@ typedef volatile unsigned char vu_char;
#endif /* DEBUG */
#define BUG() do { \
- printf("BUG: failure at %s:%d/%s()!\n", __FILE__, __LINE__, __FUNCTION__); \
+ printf("BUG: failure at %s:%d/%s()!\n", __FILE__, __LINE__, __FUNCTION__); \
panic("BUG!"); \
} while (0)
#define BUG_ON(condition) do { if (unlikely((condition)!=0)) BUG(); } while(0)