diff options
author | 2019-02-07 16:44:43 +0100 | |
---|---|---|
committer | 2019-02-07 16:44:43 +0100 | |
commit | 82ffd0454bd9bd57780966d47bfd56d579dd4fb3 (patch) | |
tree | a735cfea934b7c4eac4a2c228cd95620c1daf969 /scripts/gdb/linux/proc.py | |
parent | fbdev: fbmem: convert CONFIG_FB_LOGO_CENTER into a cmd line option (diff) | |
parent | Linux 5.0-rc5 (diff) | |
download | wireguard-linux-82ffd0454bd9bd57780966d47bfd56d579dd4fb3.tar.xz wireguard-linux-82ffd0454bd9bd57780966d47bfd56d579dd4fb3.zip |
Merge tag 'v5.0-rc5' of https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux into fbdev-for-next
Linux 5.0-rc5
Sync with upstream (which now contains fbdev-v5.0-rc3 changes) to
prepare a base for fbdev-v5.1 changes.
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() |