Fix spelling error.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2882 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas 2000-09-17 21:29:21 +00:00
parent 8ee87f0e99
commit 3095936c3d

View File

@ -89,7 +89,7 @@ char * prettify (const char *);
/* utility macros */
#define FATAL(x...) LG(1, "Fatal Error: %s: ", prettify(__FUNCTION__)); LG(1, ##x);
#define PERR(x...) LG(LERR, "Error: %s: ", prettify(__FUNCTION__)); LG(LERR, ##x);
#define PWARN(x...) LG(LWARN, "Waring: %s: ", prettify(__FUNCTION__)); LG(LWARN, ##x);
#define PWARN(x...) LG(LWARN, "Warning: %s: ", prettify(__FUNCTION__)); LG(LWARN, ##x);
#define PINFO(x...) LG(LINFO, "Info: %s: ", prettify(__FUNCTION__)); LG(LINFO, ##x);
#define DEBUG(x...) LG(LDEBUG, "Debug: %s: ", prettify(__FUNCTION__)); LG(LDEBUG, ##x);
#define ENTER(x...) LG(LDEBUG, "Enter: %s: ", prettify(__FUNCTION__)); LG(LDEBUG, ##x);