[Yaffs] [PATCH 20/20] remove hardcode app name

Top Page
Attachments:
Message as email
+ (text/plain)
Delete this message
Reply to this message
Author: Xiangfu Liu
Date:  
To: yaffs
CC: sebastien
Old-Topics: [Yaffs] [PATCH 19/20] fix the redefined warning
Subject: [Yaffs] [PATCH 20/20] remove hardcode app name
Signed-off-by: Xiangfu Liu <>
---
utils/mkyaffs2image.c | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/utils/mkyaffs2image.c b/utils/mkyaffs2image.c
index 2e62708..c8d19ee 100644
--- a/utils/mkyaffs2image.c
+++ b/utils/mkyaffs2image.c
@@ -558,21 +558,21 @@ int main(int argc, char *argv[])
 {
     struct stat stats;

    
-    printf("mkyaffs2image: image building tool for YAFFS2 built "__DATE__"\n");
+    printf("%s: image building tool for YAFFS2 built "__DATE__"\n", argv[0]);

    
     if(argc < 3)
     {
-        printf("usage: mkyaffs2image dir image_file [convert]\n");
+        printf("usage: %s dir image_file [convert]\n", argv[0]);
         printf("           dir        the directory tree to be converted\n");
         printf("           image_file the output file to hold the image\n");
-        printf("           'convert'  produce a big-endian image from a little-endian machine\n");
+        printf("           'convert'  produce a big-endian image from a little-endian machine\n");
         exit(1);
     }


-    if ((argc == 4) && (!strncmp(argv[3], "convert", strlen("convert"))))
-    {
-        convert_endian = 1;
-    }
+    if ((argc == 4) && (!strncmp(argv[3], "convert", strlen("convert"))))
+    {
+        convert_endian = 1;
+    }


     if(stat(argv[1],&stats) < 0)
     {
-- 
1.7.4.1