diff options
author | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-04-07 21:50:16 +0000 |
---|---|---|
committer | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-04-07 21:50:16 +0000 |
commit | e0c2cc6f8975adde2c8605ae7fd76237bbcc7539 (patch) | |
tree | 8064bba5cad15c0b20808e586c918df39557f786 /ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/MainHexEditor.c | |
parent | 392fa5a63bcbf477107007d5df9c437520cb113d (diff) | |
download | edk2-platforms-e0c2cc6f8975adde2c8605ae7fd76237bbcc7539.tar.xz |
Fix Xcode, clang, and ARM build and link issues.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11513 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/MainHexEditor.c')
-rw-r--r-- | ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/MainHexEditor.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/MainHexEditor.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/MainHexEditor.c index 73fa4c238d..ccd73a9882 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/MainHexEditor.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/MainHexEditor.c @@ -2164,6 +2164,10 @@ HMainEditorKeyInput ( case FileTypeMemBuffer:
OldSize = HBufferImage.MemImage->Size;
break;
+
+ default:
+ OldSize = 0;
+ break;
}
if (!LengthChange) {
|