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.
+2013-03-07 Pedro Alves <palves@redhat.com>
+
+ * remote-notif.c (notif_debug): Change type to int.
+ * remote-notif.h (notif_debug): Likewise.
+
2013-03-07 Pedro Alves <palves@redhat.com>
* ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
#include <string.h>
-unsigned int notif_debug = 0;
+int notif_debug = 0;
/* Supported clients of notifications. */
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 */