Fix signature of other notification backends

Why isn't this a compiler error in the first place..
This commit is contained in:
Patrick Griffis 2017-04-28 07:38:47 -04:00
parent ec94565cb9
commit 88cb0c9d20
3 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ notification_backend_show (const char *title, const char *text)
} }
int int
notification_backend_init (void) notification_backend_init (const char **error)
{ {
return 0; return 0;
} }

View File

@ -53,7 +53,7 @@ notification_backend_show (const char *title, const char *text)
} }
int int
notification_backend_init (void) notification_backend_init (const char **error)
{ {
GList* server_caps; GList* server_caps;

View File

@ -37,7 +37,7 @@ notification_backend_show (const char *title, const char *text)
} }
int int
notification_backend_init (void) notification_backend_init (const char **error)
{ {
return 1; return 1;
} }