aboutsummaryrefslogtreecommitdiff
path: root/sumtool.c
diff options
context:
space:
mode:
Diffstat (limited to 'sumtool.c')
-rw-r--r--sumtool.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sumtool.c b/sumtool.c
index 966e110..11b25b1 100644
--- a/sumtool.c
+++ b/sumtool.c
@@ -88,7 +88,7 @@ static struct option long_options[] = {
{NULL, 0, NULL, 0}
};
-static char *helptext =
+static const char helptext[] =
"Usage: sumtool [OPTIONS] -i inputfile -o outputfile\n\n"
"Convert the input JFFS2 image to a summarized JFFS2 image\n"
"Summary makes mounting faster - if summary support enabled in your kernel\n\n"
@@ -112,7 +112,7 @@ static char *helptext =
" eraseblock\n\n";
-static char *revtext = "$Revision: 1.9 $";
+static const char revtext[] = "$Revision: 1.9 $";
static unsigned char ffbuf[16] = {
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
@@ -927,7 +927,7 @@ int main(int argc, char **argv)
close(in_fd);
if(out_fd != -1)
close(out_fd);
- fprintf(stderr,helptext);
+ fprintf(stderr, "%s", helptext);
error_msg_and_die("You must specify input and output files!\n");
}