summaryrefslogtreecommitdiffstats
path: root/src/common/c_common.h
diff options
context:
space:
mode:
authorimarom <imarom@cisco.com>2015-11-08 15:08:07 +0200
committerimarom <imarom@cisco.com>2015-11-08 15:08:07 +0200
commit38dc2db83370ee9d2483a09f4451a5c0f1167cee (patch)
tree3f8b2d4f5efa627a2e8a7da4ca2623e1a91c2d80 /src/common/c_common.h
parentbc7d9ee81604fd33607569ac4f03ca8b91777b29 (diff)
fixed all warnings
now compiles with -Wall -Werror
Diffstat (limited to 'src/common/c_common.h')
-rwxr-xr-xsrc/common/c_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/c_common.h b/src/common/c_common.h
index d8320aaa..3e43644f 100755
--- a/src/common/c_common.h
+++ b/src/common/c_common.h
@@ -46,7 +46,7 @@ typedef void* c_pvoid;
#ifdef _DEBUG
#define BP_ASSERT(a) assert(a)
#else
- #define BP_ASSERT(a)
+ #define BP_ASSERT(a) (void (a))
#endif
#endif