diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-12-10 16:40:42 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-12-10 16:40:42 +0100 |
commit | c73df2007037a3871498761e1dc4d194ea25bbaa (patch) | |
tree | 0e74c6f557df6362d1057e92aadf33b93c2bce2d /src/libmdsserver | |
parent | m simplification (diff) | |
download | mds-c73df2007037a3871498761e1dc4d194ea25bbaa.tar.gz mds-c73df2007037a3871498761e1dc4d194ea25bbaa.tar.bz2 mds-c73df2007037a3871498761e1dc4d194ea25bbaa.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/libmdsserver')
-rw-r--r-- | src/libmdsserver/macros.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libmdsserver/macros.h b/src/libmdsserver/macros.h index 353974f..7d661a1 100644 --- a/src/libmdsserver/macros.h +++ b/src/libmdsserver/macros.h @@ -583,7 +583,8 @@ * @param condition The condition * @param instructions The instruction (semicolon-terminated) */ -#define exit_if(condition, instructions) do { if (condition) { instructions return 1; } } while (0) +#define exit_if(condition, instructions) \ + do { if (condition) { instructions return 1; } } while (0) /** |