diff options
author | Rebecca Cran <rebecca@bsdio.com> | 2022-04-10 19:16:57 -0600 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2022-05-03 09:12:27 +0000 |
commit | daa6cd876383ae16d17dc41e65635d8f9ac66d93 (patch) | |
tree | e69bfe105fc0df9d2d215df0757524acc2f4a82f /ArmPlatformPkg | |
parent | 4092f1d3977d290bf7fbcaa1ff55784c080f136f (diff) | |
download | edk2-daa6cd876383ae16d17dc41e65635d8f9ac66d93.tar.gz edk2-daa6cd876383ae16d17dc41e65635d8f9ac66d93.tar.bz2 edk2-daa6cd876383ae16d17dc41e65635d8f9ac66d93.zip |
ArmPlatformPkg: Fix error message in Scripts/Ds5/edk2_debugger.py
An error message in Scripts/Ds5/edk2_debugger.py was missing the word
'not'.
Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
Reviewed-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'ArmPlatformPkg')
-rw-r--r-- | ArmPlatformPkg/Scripts/Ds5/edk2_debugger.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ArmPlatformPkg/Scripts/Ds5/edk2_debugger.py b/ArmPlatformPkg/Scripts/Ds5/edk2_debugger.py index 9713f8bfac..4cd378dffd 100644 --- a/ArmPlatformPkg/Scripts/Ds5/edk2_debugger.py +++ b/ArmPlatformPkg/Scripts/Ds5/edk2_debugger.py @@ -222,4 +222,4 @@ class ArmPlatformDebugger: self.debug_info_table.load_all_symbols(self.verbose)
except:
# Debugger exception could be excepted if DRAM has not been initialized or if we have not started to run from DRAM yet
- print "Note: no symbols have been found in System Memory (possible cause: the UEFI permanent memory has been installed yet)"
+ print "Note: no symbols have been found in System Memory (possible cause: the UEFI permanent memory has not been installed yet)"
|