From f091efb3cb895692a55c310c368943bb4c108ba1 Mon Sep 17 00:00:00 2001 From: ywang Date: Tue, 2 Jan 2007 20:17:36 +0000 Subject: Added or modified utility version and usage display. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2159 6f19259b-4bc3-4df7-8a09-765794883524 --- Tools/CCode/Source/ModifyInf/ModifyInf.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Tools/CCode/Source/ModifyInf') diff --git a/Tools/CCode/Source/ModifyInf/ModifyInf.c b/Tools/CCode/Source/ModifyInf/ModifyInf.c index 5e3d17ddf4..1b1a9e29a1 100755 --- a/Tools/CCode/Source/ModifyInf/ModifyInf.c +++ b/Tools/CCode/Source/ModifyInf/ModifyInf.c @@ -271,7 +271,7 @@ Returns: } void -MIUsage( +Usage( void ) /*++ @@ -291,7 +291,7 @@ Returns: --*/ { MIVersion(); - printf ("\n Usage: %s InputFile OutputFile Pattern_String [Pattern_String бн]\n\ + printf ("\nUsage: %s InputFile OutputFile Pattern_String [Pattern_String бн]\n\ Where: \n\ Pattern_String is of the format (note that the section name must be \n\ enclosed within square brackets):\n\ @@ -334,13 +334,13 @@ Returns: FILE *fpout; if (argc < 1) { - MIUsage(); + Usage(); return -1; } if ((strcmp(argv[1], "-h") == 0) || (strcmp(argv[1], "--help") == 0) || (strcmp(argv[1], "-?") == 0) || (strcmp(argv[1], "/?") == 0)) { - MIUsage(); + Usage(); return 0; } @@ -350,7 +350,7 @@ Returns: } if (argc < 3) { - MIUsage(); + Usage(); return -1; } -- cgit v1.2.3