diff options
author | Haru <haru@dotalux.com> | 2016-07-03 19:47:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-03 19:47:38 +0200 |
commit | d2f666fc10eac20f70729176c088b2c81d233531 (patch) | |
tree | 55902d4e252f365f511137d4022670ccfad59a62 /src/common/showmsg.h | |
parent | 6fbc00f9454d33caf79f89708cab9e46ec996eeb (diff) | |
parent | 7b350fbf497d737c12cc03ddd888bb6a0ee486e4 (diff) | |
download | hercules-d2f666fc10eac20f70729176c088b2c81d233531.tar.gz hercules-d2f666fc10eac20f70729176c088b2c81d233531.tar.bz2 hercules-d2f666fc10eac20f70729176c088b2c81d233531.tar.xz hercules-d2f666fc10eac20f70729176c088b2c81d233531.zip |
Merge pull request #1336 from 4144/travisext
Different travis extensions
Diffstat (limited to 'src/common/showmsg.h')
-rw-r--r-- | src/common/showmsg.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/showmsg.h b/src/common/showmsg.h index 7b48d0df2..303c8dd28 100644 --- a/src/common/showmsg.h +++ b/src/common/showmsg.h @@ -130,7 +130,11 @@ struct showmsg_interface { #define ShowSQL(fmt, ...) (showmsg->showSQL((fmt), ##__VA_ARGS__)) #define ShowInfo(fmt, ...) (showmsg->showInfo((fmt), ##__VA_ARGS__)) #define ShowNotice(fmt, ...) (showmsg->showNotice((fmt), ##__VA_ARGS__)) +#ifdef BUILDBOT +#define ShowWarning(fmt, ...) (showmsg->showError((fmt), ##__VA_ARGS__)) +#else // BUILDBOT #define ShowWarning(fmt, ...) (showmsg->showWarning((fmt), ##__VA_ARGS__)) +#endif // BUILDBOT #define ShowDebug(fmt, ...) (showmsg->showDebug((fmt), ##__VA_ARGS__)) #define ShowError(fmt, ...) (showmsg->showError((fmt), ##__VA_ARGS__)) #define ShowFatalError(fmt, ...) (showmsg->showFatalError((fmt), ##__VA_ARGS__)) |