summaryrefslogtreecommitdiff
path: root/src/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/util.c b/src/util.c
index 566255d..8ce2822 100644
--- a/src/util.c
+++ b/src/util.c
@@ -111,13 +111,21 @@ const char *Dirname(const char *path)
void Debug(const char *format, ...)
{
+ static const int USE_STDERR=1;
static FILE *fp=NULL;
va_list ap;
if (!fp)
{
- fp=fopen("debug.txt","w");
- setbuf(fp,NULL);
+ if (USE_STDERR)
+ {
+ fp=stderr;
+ }
+ else
+ {
+ fp=fopen("debug.txt","w");
+ setbuf(fp,NULL);
+ }
}
if (!fp)