diff options
author | Patrick Griffis <tingping@tingping.se> | 2017-04-28 07:38:47 -0400 |
---|---|---|
committer | Patrick Griffis <tingping@tingping.se> | 2017-04-28 07:38:47 -0400 |
commit | 88cb0c9d205552ba3f2531d0d6380f7d9f15c4f7 (patch) | |
tree | ba61c995c28a4d454d56e9002d1fde6985fc660c /src/fe-gtk/notifications/notification-dummy.c | |
parent | ec94565cb90134dfedd585a45c8266cc2e21ef4c (diff) |
Fix signature of other notification backends
Why isn't this a compiler error in the first place..
Diffstat (limited to 'src/fe-gtk/notifications/notification-dummy.c')
-rw-r--r-- | src/fe-gtk/notifications/notification-dummy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-gtk/notifications/notification-dummy.c b/src/fe-gtk/notifications/notification-dummy.c index 022443bf..9aa7d19c 100644 --- a/src/fe-gtk/notifications/notification-dummy.c +++ b/src/fe-gtk/notifications/notification-dummy.c @@ -22,7 +22,7 @@ notification_backend_show (const char *title, const char *text) } int -notification_backend_init (void) +notification_backend_init (const char **error) { return 0; } |