summaryrefslogtreecommitdiff
path: root/tests/libfetch
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2012-07-14 17:16:21 +0200
committerAndreas Baumann <abaumann@yahoo.com>2012-07-14 17:16:21 +0200
commit54cce110784d33d658b5f78286a98bee244a9eeb (patch)
tree9c4d998343e7dc88323ae8ef6d5a04c6b958df9c /tests/libfetch
parentfcb682cb1955d362390665330fdf476cab7dc10b (diff)
downloadcrawler-54cce110784d33d658b5f78286a98bee244a9eeb.tar.gz
crawler-54cce110784d33d658b5f78286a98bee244a9eeb.tar.bz2
added streamhtmlparser
Diffstat (limited to 'tests/libfetch')
-rw-r--r--tests/libfetch/test1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libfetch/test1.c b/tests/libfetch/test1.c
index f912e3a..f8ffecc 100644
--- a/tests/libfetch/test1.c
+++ b/tests/libfetch/test1.c
@@ -28,7 +28,7 @@ int main( int argc, char *argv[] )
while( ( res = fetchIO_read( io, buf, sizeof( buf ) ) ) != 0 ) {
buf[res] = '\0';
- puts( buf );
+ fputs( buf, stdout );
}
fetchIO_close( io );