diff options
Diffstat (limited to 'ShellPkg/Library/UefiShellDebug1CommandsLib')
-rw-r--r-- | ShellPkg/Library/UefiShellDebug1CommandsLib/Bcfg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/Bcfg.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/Bcfg.c index 10ce33eee9..fed38564e9 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/Bcfg.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/Bcfg.c @@ -929,7 +929,7 @@ BcfgAddOptDebug1( //
ASSERT(FileName == NULL || Data == NULL);
- if (ShellStatus == SHELL_SUCCESS && FileName != NULL || Data != NULL) {
+ if (ShellStatus == SHELL_SUCCESS && (FileName != NULL || Data != NULL)) {
if (FileName != NULL) {
//
// Open the file and populate the data buffer.
@@ -948,7 +948,7 @@ BcfgAddOptDebug1( ShellStatus = SHELL_OUT_OF_RESOURCES;
}
if (ShellStatus == SHELL_SUCCESS) {
- ShellStatus = ShellReadFile(FileHandle, &(UINTN)Intermediate, Data);
+ ShellStatus = ShellReadFile(FileHandle, &((UINTN)Intermediate), Data);
}
} else {
Intermediate = StrSize(Data);
|