X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=Tools%2FCCode%2FSource%2FModifyInf%2FModifyInf.c;h=1b1a9e29a16cf869bc381b317db10c42e5f7aa95;hb=f091efb3cb895692a55c310c368943bb4c108ba1;hp=5e3d17ddf431d6af19c5a3d92538f5b5fa392570;hpb=a3ab2a47d9ecb2295802726fd17f048c14519aab;p=mirror_edk2.git 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; }