diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 91a3f9ba75..e416a26da9 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,8 @@ +2013-07-02 Mircea Gherzan + + * notif.h (notif_event): Add a dummy member to avoid compiler + errors. + 2013-07-01 Pedro Alves * hostio.c (HOSTIO_PATH_MAX): Define. diff --git a/gdb/gdbserver/notif.h b/gdb/gdbserver/notif.h index 608b763e5b..c714e7bc78 100644 --- a/gdb/gdbserver/notif.h +++ b/gdb/gdbserver/notif.h @@ -27,6 +27,8 @@ typedef struct notif_event { + /* C requires that a struct or union has at least one member. */ + char dummy; } *notif_event_p; DECLARE_QUEUE_P (notif_event_p);