diff options
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 |