diff options
author | Nick Alcock <nick.alcock@oracle.com> | 2019-09-26 15:26:48 +0100 |
---|---|---|
committer | Nick Alcock <nick.alcock@oracle.com> | 2019-10-03 17:04:56 +0100 |
commit | fa56cdcd2427e701328ae1e20b0ca7916d580a14 (patch) | |
tree | 3dedc05de3acb2dcd8a80d7caa6d824afb356470 /libctf/ctf-open.c | |
parent | d344b407dddfb59003f646ff29ac0850e7eec588 (diff) | |
download | fsf-binutils-gdb-fa56cdcd2427e701328ae1e20b0ca7916d580a14.zip fsf-binutils-gdb-fa56cdcd2427e701328ae1e20b0ca7916d580a14.tar.gz fsf-binutils-gdb-fa56cdcd2427e701328ae1e20b0ca7916d580a14.tar.bz2 |
libctf: fix tabdamage
A little tabdamage predating the linker patch series has crept in.
New in v5.
libctf/
* ctf-open.c (ctf_bufopen_internal): Fix tabdamage.
* ctf-types.c (ctf_type_lname): Likewise.
Diffstat (limited to 'libctf/ctf-open.c')
-rw-r--r-- | libctf/ctf-open.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libctf/ctf-open.c b/libctf/ctf-open.c index aedf390..7fb289a 100644 --- a/libctf/ctf-open.c +++ b/libctf/ctf-open.c @@ -1542,8 +1542,8 @@ ctf_bufopen_internal (const ctf_sect_t *ctfsect, const ctf_sect_t *symsect, (err = flip_ctf (hp, fp->ctf_buf)) != 0) { /* We can be certain that flip_ctf() will have endian-flipped everything - other than the types table when we return. In particular the header - is fine, so set it, to allow freeing to use the usual code path. */ + other than the types table when we return. In particular the header + is fine, so set it, to allow freeing to use the usual code path. */ ctf_set_base (fp, hp, fp->ctf_base); goto bad; |