diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2008-12-24 04:44:28 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2008-12-24 04:44:28 +0000 |
| commit | f5be029854625d94d4c4280a62efcd496286a7d3 (patch) | |
| tree | 02d8d0d01fdb019031a316b85c275f8e8441f34a | |
| parent | 68e24d3a16f3472121a38d75aeafcc9d9c94a136 (diff) | |
| download | rockbox-f5be029854625d94d4c4280a62efcd496286a7d3.zip rockbox-f5be029854625d94d4c4280a62efcd496286a7d3.tar.gz rockbox-f5be029854625d94d4c4280a62efcd496286a7d3.tar.bz2 rockbox-f5be029854625d94d4c4280a62efcd496286a7d3.tar.xz | |
Fix one of the warnings which the ubuntu 8.10 servers are throwing..
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19576 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | tools/convbdf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/convbdf.c b/tools/convbdf.c index 010e8ee..aae5b43 100644 --- a/tools/convbdf.c +++ b/tools/convbdf.c @@ -102,7 +102,7 @@ usage(void) " -n Don't generate bitmaps as comments in .c file\n" }; - fprintf(stderr, help); + fprintf(stderr, "%s", help); } /* parse command line options*/ |