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, &notif_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.
This commit is contained in:
Pedro Alves 2013-03-07 17:52:58 +00:00
parent 964b8317b4
commit 99f0a309a9
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
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.

View File

@ -42,7 +42,7 @@
#include <string.h>
unsigned int notif_debug = 0;
int notif_debug = 0;
/* Supported clients of notifications. */

View File

@ -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 */