diff options
author | imarom <imarom@cisco.com> | 2015-11-08 15:08:07 +0200 |
---|---|---|
committer | imarom <imarom@cisco.com> | 2015-11-08 15:08:07 +0200 |
commit | 38dc2db83370ee9d2483a09f4451a5c0f1167cee (patch) | |
tree | 3f8b2d4f5efa627a2e8a7da4ca2623e1a91c2d80 /src/common/c_common.h | |
parent | bc7d9ee81604fd33607569ac4f03ca8b91777b29 (diff) |
fixed all warnings
now compiles with -Wall -Werror
Diffstat (limited to 'src/common/c_common.h')
-rwxr-xr-x | src/common/c_common.h | 2 |
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 |