From: Pierre-Marc Fournier Date: Wed, 9 Sep 2009 15:53:01 +0000 (-0400) Subject: usterr: fix PERROR X-Git-Tag: v0.1~149 X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;h=e91e64b6dd6bc59347a88d5154bd89c3d0c82acd;p=ust.git usterr: fix PERROR --- diff --git a/share/usterr.h b/share/usterr.h index a96a36f..6a3e2a3 100644 --- a/share/usterr.h +++ b/share/usterr.h @@ -21,7 +21,7 @@ #define WARN(fmt, args...) fprintf(stderr, UST_STR_COMPONENT ": Warning: " fmt "\n", ## args); fflush(stderr) #define ERR(fmt, args...) fprintf(stderr, UST_STR_COMPONENT ": Error: " fmt "\n", ## args); fflush(stderr) #define BUG(fmt, args...) fprintf(stderr, UST_STR_COMPONENT ": BUG: " fmt "\n", ## args); fflush(stderr) -#define PERROR(call) perror("ust: ERROR: " call) +#define PERROR(call) perror(UST_STR_COMPONENT ": Error: " call) #define BUG_ON(condition) do { if (unlikely(condition)) ERR("condition not respected (BUG)"); } while(0) #define WARN_ON(condition) do { if (unlikely(condition)) WARN("condition not respected on line %s:%d", __FILE__, __LINE__); } while(0)