From 34c525c85d359211b22ff15fb87ebd42ec69b686 Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Thu, 17 Mar 2016 07:55:00 +0000 Subject: [PATCH] [VFATLIB] Hint for future and current developers: there's a hidden feature in ReactOS, you can build it locally before committing, so that you can check whether your commit breaks build... Amazing, isn't it? svn path=/trunk/; revision=71017 --- reactos/lib/fslib/vfatlib/check/common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/lib/fslib/vfatlib/check/common.h b/reactos/lib/fslib/vfatlib/check/common.h index dd4db47d453..da990db14d5 100644 --- a/reactos/lib/fslib/vfatlib/check/common.h +++ b/reactos/lib/fslib/vfatlib/check/common.h @@ -32,7 +32,7 @@ DECLSPEC_NORETURN // __attribute((noreturn)) void die_func(const char *msg, ...); #define die(msg, ...) \ do { \ - die_func("DIE! (%s:%d) " msg "\n", __RELFILE__, __LINE__, ##__VA_ARGS__) \ + die_func("DIE! (%s:%d) " msg "\n", __RELFILE__, __LINE__, ##__VA_ARGS__); \ } while (0) /* Displays a prinf-style message and terminates the program. */ @@ -42,7 +42,7 @@ DECLSPEC_NORETURN // __attribute((noreturn)) void pdie_func(const char *msg, ...); #define pdie(msg, ...) \ do { \ - pdie_func("P-DIE! (%s:%d) " msg "\n", __RELFILE__, __LINE__, ##__VA_ARGS__) \ + pdie_func("P-DIE! (%s:%d) " msg "\n", __RELFILE__, __LINE__, ##__VA_ARGS__); \ } while (0) /* Like die, but appends an error message according to the state of errno. */ -- 2.17.1