diff options
Diffstat (limited to 'hw/xwin/winmsg.c')
-rw-r--r-- | hw/xwin/winmsg.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/hw/xwin/winmsg.c b/hw/xwin/winmsg.c index 07c2f30eb..b2c87ca17 100644 --- a/hw/xwin/winmsg.c +++ b/hw/xwin/winmsg.c @@ -99,6 +99,16 @@ winErrorFVerb(int verb, const char *format, ...) } void +winError(const char *format, ...) +{ + va_list ap; + + va_start(ap, format); + LogVMessageVerb(X_NONE, -1, format, ap); + va_end(ap); +} + +void winDebug(const char *format, ...) { va_list ap; |