diff options
author | Stéphane Aulery <lkppo@free.fr> | 2012-01-27 00:22:43 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-01-27 12:18:38 +0100 |
commit | f1c6f2c00d88f1cdea6be5ac09e2001f547dc55a (patch) | |
tree | cc07a574d02f06935d3067e69272fec9e9c29da8 | |
parent | 3d3255dd4190416d8b4e6752760a2e6487b9a564 (diff) | |
download | fbida-f1c6f2c00d88f1cdea6be5ac09e2001f547dc55a.tar.gz |
Fix a missed c-format string in error messages of thumbnail.cgi.c
-rw-r--r-- | thumbnail.cgi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thumbnail.cgi.c b/thumbnail.cgi.c index 15f6776..a065c94 100644 --- a/thumbnail.cgi.c +++ b/thumbnail.cgi.c @@ -99,7 +99,7 @@ int main(int argc, char *argv[]) char *path_info; if (NULL == getenv("GATEWAY_INTERFACE")) { - fprintf(stderr,shellhelp); + fprintf(stderr,"%s", shellhelp); fprintf(stderr,description,"$DOCUMENT_ROOT"); exit(1); } |