mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-14 21:03:31 +08:00
Convert 'L' to 'l' when setting wide_width to 1
When setting wide_width to 1, convert 'L' to 'l'. Otherwise, %Lx/%Lu/%Ld will be passed to fprintf which will treat the argument as long long. * bfd.c (_doprnt): Convert 'L' to 'l' when setting wide_width to 1.
This commit is contained in:
parent
4b617f5235
commit
a0b7b10523
@ -1,3 +1,8 @@
|
|||||||
|
2017-07-06 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
* bfd.c (_doprnt): Convert 'L' to 'l' when setting wide_width
|
||||||
|
to 1.
|
||||||
|
|
||||||
2017-07-05 H.J. Lu <hongjiu.lu@intel.com>
|
2017-07-05 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* dwarf2.c (line_info_add_include_dir_stub): Replace time with
|
* dwarf2.c (line_info_add_include_dir_stub): Replace time with
|
||||||
|
@ -727,7 +727,10 @@ _doprnt (FILE *stream, const char *format, va_list ap)
|
|||||||
either long long or long. */
|
either long long or long. */
|
||||||
if ((BFD_ARCH_SIZE < 64 || BFD_HOST_64BIT_LONG)
|
if ((BFD_ARCH_SIZE < 64 || BFD_HOST_64BIT_LONG)
|
||||||
&& sptr[-2] == 'L')
|
&& sptr[-2] == 'L')
|
||||||
wide_width = 1;
|
{
|
||||||
|
wide_width = 1;
|
||||||
|
sptr[-2] = 'l';
|
||||||
|
}
|
||||||
|
|
||||||
switch (wide_width)
|
switch (wide_width)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user