diff options
author | Christian Biesinger <cbiesinger@google.com> | 2020-01-20 15:31:50 -0600 |
---|---|---|
committer | Christian Biesinger <cbiesinger@google.com> | 2020-02-14 15:11:07 -0600 |
commit | 2196e892c8249da8a1bf2f488f716b4bc382bc13 (patch) | |
tree | 64fec9f5d3df574af43d230fd65e02c37351ac8b /gdb/corelow.c | |
parent | 5f661e03972e3412778c0bee8d20522b9bffea76 (diff) | |
download | binutils-users/cbiesinger/minidump.zip binutils-users/cbiesinger/minidump.tar.gz binutils-users/cbiesinger/minidump.tar.bz2 |
Start working on reading .dmp filesusers/cbiesinger/minidump
Change-Id: I0cf39c48938b78ae3776d52f425133cadaa33de6
Diffstat (limited to 'gdb/corelow.c')
-rw-r--r-- | gdb/corelow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/corelow.c b/gdb/corelow.c index 5cd058d..6efbd60 100644 --- a/gdb/corelow.c +++ b/gdb/corelow.c @@ -617,8 +617,8 @@ core_target::get_core_register_section (struct regcache *regcache, } if (size != section_min_size && !variable_size_section) { - warning (_("Unexpected size of section `%s' in core file."), - section_name.c_str ()); + warning (_("Unexpected size of section `%s' in core file, expected `%i'."), + section_name.c_str (), section_min_size); } gdb::byte_vector contents (size); |