diff options
Diffstat (limited to 'BaseTools/Source/C/Split/Split.c')
-rw-r--r-- | BaseTools/Source/C/Split/Split.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BaseTools/Source/C/Split/Split.c b/BaseTools/Source/C/Split/Split.c index 6b0a32376d..ff4a433541 100644 --- a/BaseTools/Source/C/Split/Split.c +++ b/BaseTools/Source/C/Split/Split.c @@ -328,7 +328,7 @@ Returns: if (strlen(argv[0]) > 2) {
Status = CountVerboseLevel (&argv[0][2], strlen(argv[0]) - 2, &VerboseLevel);
if (EFI_ERROR (Status)) {
- Error (NULL, 0, 0x1003, NULL, "%s is invaild parameter!", argv[0]);
+ Error (NULL, 0, 0x1003, NULL, "%s is invalid parameter!", argv[0]);
return STATUS_ERROR;
}
}
@@ -351,7 +351,7 @@ Returns: //
// Don't recognize the parameter.
//
- Error (NULL, 0, 0x1003, NULL, "%s is invaild parameter!", argv[0]);
+ Error (NULL, 0, 0x1003, NULL, "%s is invalid parameter!", argv[0]);
return STATUS_ERROR;
}
|