diff options
author | Martin Willi <martin@revosec.ch> | 2010-03-03 16:53:42 +0100 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2010-03-03 16:53:42 +0100 |
commit | d02308502f2d0368235d208c6503884fc3ae974c (patch) | |
tree | 780fea19281d177209c92e9058728c93570482fa /src | |
parent | a5a4b6c9d19e2660249452dcdc35b957ee7bf4a7 (diff) | |
download | strongswan-d02308502f2d0368235d208c6503884fc3ae974c.tar.bz2 strongswan-d02308502f2d0368235d208c6503884fc3ae974c.tar.xz |
Add braces around empty body in if statement
Diffstat (limited to 'src')
-rw-r--r-- | src/libstrongswan/utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstrongswan/utils.h b/src/libstrongswan/utils.h index 367e75ef2..d3500258f 100644 --- a/src/libstrongswan/utils.h +++ b/src/libstrongswan/utils.h @@ -150,7 +150,7 @@ /** * Ignore result of functions tagged with warn_unused_result attributes */ -#define ignore_result(call) { if(call); } +#define ignore_result(call) { if(call){}; } /** * Assign a function as a class method |