Enable stderr debugging by default (If debugFlags is set to non-zero.) Signed-off-by: Daniel Stone <daniel@fooishbar.org>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
diff --git a/src/xkbcomp/utils.c b/src/xkbcomp/utils.c
index 2309857..d9914cd 100644
--- a/src/xkbcomp/utils.c
+++ b/src/xkbcomp/utils.c
@@ -79,7 +79,7 @@ uInformation(const char *s, ...)
va_list args;
if (!errorFile)
- return;
+ errorFile = stderr;
va_start(args, s);
vfprintf(errorFile, s, args);
@@ -95,7 +95,7 @@ uAction(const char *s, ...)
va_list args;
if (!errorFile)
- return;
+ errorFile = stderr;
if (prefix != NULL)
fprintf(errorFile, "%s", prefix);
@@ -114,7 +114,7 @@ uWarning(const char *s, ...)
va_list args;
if (!errorFile)
- return;
+ errorFile = stderr;
if ((outCount == 0) && (preMsg != NULL))
fprintf(errorFile, "%s\n", preMsg);
@@ -136,7 +136,7 @@ uError(const char *s, ...)
va_list args;
if (!errorFile)
- return;
+ errorFile = stderr;
if ((outCount == 0) && (preMsg != NULL))
fprintf(errorFile, "%s\n", preMsg);
@@ -158,7 +158,7 @@ uFatalError(const char *s, ...)
va_list args;
if (!errorFile)
- return;
+ errorFile = stderr;
if ((outCount == 0) && (preMsg != NULL))
fprintf(errorFile, "%s\n", preMsg);
@@ -183,7 +183,7 @@ uInternalError(const char *s, ...)
va_list args;
if (!errorFile)
- return;
+ errorFile = stderr;
if ((outCount == 0) && (preMsg != NULL))
fprintf(errorFile, "%s\n", preMsg);