diff options
author | Joel Stanley <joel@jms.id.au> | 2019-02-14 02:38:42 +0300 |
---|---|---|
committer | Joel Stanley <joel@jms.id.au> | 2019-02-14 02:38:48 +0300 |
commit | d808d27f70f7d4158151534ed0a28ab7dae62b8d (patch) | |
tree | 497264a075f9c7c450169a0a09b044e2d38d8030 /scripts/gdb/linux/proc.py | |
parent | 3931734021a55283294733ce514803842833d2f4 (diff) | |
parent | 43d3d5141515dd201aa6d268e3c02fb7383769f6 (diff) | |
download | linux-d808d27f70f7d4158151534ed0a28ab7dae62b8d.tar.xz |
Merge tag 'v4.19.21' into dev-4.19
This is the 4.19.21 stable release
Signed-off-by: Joel Stanley <joel@jms.id.au>
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): def invoke(self, arg, from_tty): # linux_banner should contain a newline - gdb.write(gdb.parse_and_eval("linux_banner").string()) + gdb.write(gdb.parse_and_eval("(char *)linux_banner").string()) LxVersion() |