aboutsummaryrefslogtreecommitdiff
path: root/desiredata/src/desire.c
diff options
context:
space:
mode:
authorN.N. <matju@users.sourceforge.net>2009-04-27 21:16:25 +0000
committerN.N. <matju@users.sourceforge.net>2009-04-27 21:16:25 +0000
commit422b07621e8199dc0644fee37b6c6c7d1b1d81ea (patch)
tree184091984ff3972a792da7bc2633c718f55b24a1 /desiredata/src/desire.c
parent3075700fe36cc99e2081fac39c9a23255ca2d539 (diff)
duh (fix previous commit about -stdout)
svn path=/trunk/; revision=11181
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 f03b3775..bdbc60c5 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_printtofh = -1; /* send to console by default */
+FILE *sys_printtofh = 0; /* send to console by default */
static void dopost(const char *s) {
if (sys_printhook) sys_printhook(s);
- else if (sys_printtofh<0) fprintf(stderr, "%s", s);
+ else if (sys_printtofh) fprintf(sys_printtofh, "%s", s);
else {
std::ostringstream t;
for(int i=0; s[i]; i++) {