summaryrefslogtreecommitdiff
path: root/src/data_integer.c
diff options
context:
space:
mode:
authorKrzysztof Krzyżaniak <eloy@debian.org>2006-09-25 08:27:05 +0000
committerKrzysztof Krzyżaniak <eloy@debian.org>2006-09-25 08:27:05 +0000
commitcb3017146d5322069fe4003ffcd4c9ada74dacb8 (patch)
tree5a07eefc6cfd6c668292bfa3471d993dc3b88f1f /src/data_integer.c
parent8e8fd7ec0fc30c1703a192edfceefac6ab5f0f0c (diff)
downloadlighttpd-cb3017146d5322069fe4003ffcd4c9ada74dacb8.tar.gz
eloy: new upstream version
Diffstat (limited to 'src/data_integer.c')
-rw-r--r--src/data_integer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data_integer.c b/src/data_integer.c
index 96d1d0a..c557b90 100644
--- a/src/data_integer.c
+++ b/src/data_integer.c
@@ -42,7 +42,7 @@ static void data_integer_print(const data_unset *d, int depth) {
data_integer *ds = (data_integer *)d;
UNUSED(depth);
- fprintf(stderr, "%d", ds->value);
+ fprintf(stdout, "%d", ds->value);
}