OSDN Git Service
(root)
/
uclinux-h8
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3328bc9
)
scripts/gdb: fix typo in exception name
author
Thiébaud Weksteen
<thiebaud@weksteen.fr>
Tue, 30 Jun 2015 21:58:16 +0000
(14:58 -0700)
committer
Linus Torvalds
<torvalds@linux-foundation.org>
Wed, 1 Jul 2015 02:44:58 +0000
(19:44 -0700)
Signed-off-by: Thiébaud Weksteen <thiebaud@weksteen.fr>
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
scripts/gdb/linux/utils.py
patch
|
blob
|
history
diff --git
a/scripts/gdb/linux/utils.py
b/scripts/gdb/linux/utils.py
index
128c306
..
d7ff3a3
100644
(file)
--- a/
scripts/gdb/linux/utils.py
+++ b/
scripts/gdb/linux/utils.py
@@
-83,7
+83,7
@@
def get_target_endianness():
elif "big endian" in endian:
target_endianness = BIG_ENDIAN
else:
- raise gdb.Gd
g
Error("unknown endianness '{0}'".format(str(endian)))
+ raise gdb.Gd
b
Error("unknown endianness '{0}'".format(str(endian)))
return target_endianness