diff options
Diffstat (limited to 'scripts/gdb/linux/proc.py')
-rw-r--r-- | scripts/gdb/linux/proc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gdb/linux/proc.py b/scripts/gdb/linux/proc.py index 086d27223c0c..0aebd7565b03 100644 --- a/scripts/gdb/linux/proc.py +++ b/scripts/gdb/linux/proc.py | |||
@@ -41,7 +41,7 @@ class LxVersion(gdb.Command): | |||
41 | 41 | ||
42 | def invoke(self, arg, from_tty): | 42 | def invoke(self, arg, from_tty): |
43 | # linux_banner should contain a newline | 43 | # linux_banner should contain a newline |
44 | gdb.write(gdb.parse_and_eval("linux_banner").string()) | 44 | gdb.write(gdb.parse_and_eval("(char *)linux_banner").string()) |
45 | 45 | ||
46 | LxVersion() | 46 | LxVersion() |
47 | 47 | ||