aboutsummaryrefslogtreecommitdiff
path: root/desiredata/src/desire.c
diff options
context:
space:
mode:
Diffstat (limited to 'desiredata/src/desire.c')
-rw-r--r--desiredata/src/desire.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/desiredata/src/desire.c b/desiredata/src/desire.c
index 35ebf470..f03b3775 100644
--- a/desiredata/src/desire.c
+++ b/desiredata/src/desire.c
@@ -7184,11 +7184,11 @@ extern "C" void glob_init () {
/* formerly s_print.c */
t_printhook sys_printhook;
-int sys_printtostderr;
+int sys_printtofh = -1; /* send to console by default */
static void dopost(const char *s) {
if (sys_printhook) sys_printhook(s);
- else if (sys_printtostderr) fprintf(stderr, "%s", s);
+ else if (sys_printtofh<0) fprintf(stderr, "%s", s);
else {
std::ostringstream t;
for(int i=0; s[i]; i++) {