diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/infrun.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8c71e72..613bf2e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2012-11-19 Yao Qi <yao@codesourcery.com> + + * infrun.c (infwait_state): Add static. + 2012-11-16 Keith Seitz <keiths@redhat.com> PR c++/13615 diff --git a/gdb/infrun.c b/gdb/infrun.c index 4efc2af..b29fd2f 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -2392,7 +2392,7 @@ enum infwait_states ptid_t waiton_ptid; /* Current inferior wait state. */ -enum infwait_states infwait_state; +static enum infwait_states infwait_state; /* Data to be passed around while handling an event. This data is discarded between events. */ |