Author: pschweitzer Date: Thu Mar 17 07:55:00 2016 New Revision: 71017
URL: http://svn.reactos.org/svn/reactos?rev=71017&view=rev Log: [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?
Modified: trunk/reactos/lib/fslib/vfatlib/check/common.h
Modified: trunk/reactos/lib/fslib/vfatlib/check/common.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/fslib/vfatlib/check/com... ============================================================================== --- trunk/reactos/lib/fslib/vfatlib/check/common.h [iso-8859-1] (original) +++ trunk/reactos/lib/fslib/vfatlib/check/common.h [iso-8859-1] Thu Mar 17 07:55:00 2016 @@ -32,7 +32,7 @@ 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 @@ 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. */