aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2014-02-27 10:18:34 +0100
committerGravatar Christian Hesse <mail@eworm.de>2014-02-27 10:18:34 +0100
commit8f344a78763429fdc5e1c3237ae2a809fb855ed0 (patch)
tree44d1ebf988d846a15e54977f646cbfa87416179b /README.md
parentb4248c6191a063d424434ca1921680eceb61d922 (diff)
downloadcqrlogo-8f344a78763429fdc5e1c3237ae2a809fb855ed0.tar.gz
cqrlogo-8f344a78763429fdc5e1c3237ae2a809fb855ed0.tar.zst
use fputs for CGI header
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 83f7997..b1c743a 100644
--- a/README.md
+++ b/README.md
@@ -89,7 +89,7 @@ your custom needs. This is minimal sample source code:
}
/* print HTTP header */
- printf(cqr_mimeheader);
+ fputs(cqr_mimeheader, stdout);
/* write PNG data to stdout */
if (fwrite(png->buffer, png->size, 1, stdout) != 1) {