diff options
author | Tom Tromey <tromey@redhat.com> | 2014-06-05 14:36:27 -0600 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2015-02-27 17:31:18 +0000 |
commit | 1424c16eab1a96de054991c346c2bbf3eac82dec (patch) | |
tree | ef25d0e86090b1f9feaf5a582693ae9e3e4282e1 /gdb/ChangeLog | |
parent | 10367c7c946a123597cbc5efaa44c18912e5e43a (diff) | |
download | gdb-1424c16eab1a96de054991c346c2bbf3eac82dec.zip gdb-1424c16eab1a96de054991c346c2bbf3eac82dec.tar.gz gdb-1424c16eab1a96de054991c346c2bbf3eac82dec.tar.bz2 |
Rename struct lzma_stream to avoid clash with system header
/home/pedro/gdb/mygit/src/gdb/minidebug.c: At global scope:
/home/pedro/gdb/mygit/src/gdb/minidebug.c:55:8: error: using typedef-name ‘lzma_stream’ after ‘struct’
struct lzma_stream
^
In file included from /usr/include/lzma.h:281:0,
from /home/pedro/gdb/mygit/src/gdb/minidebug.c:28:
/usr/include/lzma/base.h:498:3: note: ‘lzma_stream’ has a previous declaration here
} lzma_stream;
^
gdb/ChangeLog:
2015-02-27 Tom Tromey <tromey@redhat.com>
* minidebug.c (struct lzma_stream): Rename to ...
(struct gdb_lzma_stream): ... this.
(lzma_open, lzma_pread, lzma_close, lzma_stat): Adjust.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 12878f5..39958bd 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2015-02-27 Tom Tromey <tromey@redhat.com> + + * minidebug.c (struct lzma_stream): Rename to ... + (struct gdb_lzma_stream): ... this. + (lzma_open, lzma_pread, lzma_close, lzma_stat): Adjust. + 2015-02-27 Pedro Alves <palves@redhat.com> * mi/mi-cmd-stack.c (mi_apply_ext_lang_frame_filter): New |