git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
664544c
)
logging goes to stdout now
author
kramm
<kramm>
Mon, 29 Mar 2004 18:07:51 +0000
(18:07 +0000)
committer
kramm
<kramm>
Mon, 29 Mar 2004 18:07:51 +0000
(18:07 +0000)
lib/python/pyutils.c
patch
|
blob
|
history
diff --git
a/lib/python/pyutils.c
b/lib/python/pyutils.c
index
453b5c4
..
95c222b
100644
(file)
--- a/
lib/python/pyutils.c
+++ b/
lib/python/pyutils.c
@@
-36,8
+36,8
@@
void mylog(char*format, ...)
buf[l-1] = 0;
l--;
}
- fprintf(stderr, "[SWF] %s\n", buf);
- fflush(stderr);
+ fprintf(stdout, "[SWF] %s\n", buf);
+ fflush(stdout);
}
#define PY_NONE Py_BuildValue("s", 0)