diff options
author | Pedro Alves <palves@redhat.com> | 2013-03-07 17:52:58 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2013-03-07 17:52:58 +0000 |
commit | 99f0a309a9079c8fbc53e1e115a19193f60bf2df (patch) | |
tree | b80bcc6c044b14c962edbcface17c1ae3ddb64f1 /gdb/remote-notif.h | |
parent | 964b8317b43058870b9631fbaedc7e7b646e643b (diff) | |
download | gdb-99f0a309a9079c8fbc53e1e115a19193f60bf2df.zip gdb-99f0a309a9079c8fbc53e1e115a19193f60bf2df.tar.gz gdb-99f0a309a9079c8fbc53e1e115a19193f60bf2df.tar.bz2 |
remote-notif.[h|c]:notif_debug: Change type to int.
notif_debug is installed as variable of a "signed" command:
add_setshow_boolean_cmd ("notification", no_class, ¬if_debug,
_("\
and:
command.h:extern void add_setshow_boolean_cmd (char *name,
command.h- enum command_class class,
command.h- int *var,
2013-03-07 Pedro Alves <palves@redhat.com>
* remote-notif.c (notif_debug): Change type to int.
* remote-notif.h (notif_debug): Likewise.
Diffstat (limited to 'gdb/remote-notif.h')
-rw-r--r-- | gdb/remote-notif.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote-notif.h b/gdb/remote-notif.h index b2a9b8e..da4fdea 100644 --- a/gdb/remote-notif.h +++ b/gdb/remote-notif.h @@ -80,6 +80,6 @@ void remote_notif_unregister_async_event_handler (void); void remote_notif_process (struct notif_client *except); extern struct notif_client notif_client_stop; -extern unsigned int notif_debug; +extern int notif_debug; #endif /* REMOTE_NOTIF_H */ |