summaryrefslogtreecommitdiff
blob: d3fdf3c408d086fd92ba50abfe3ba41a8ac9adbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
From a576e407d913b35804f838d615da52899681d61d Mon Sep 17 00:00:00 2001
From: Andreas Henriksson <andreas@fatal.se>
Date: Mon, 15 Aug 2016 18:12:06 +0200
Subject: [PATCH 2/3] daemon: fix conflicting return types

... in functions seahorse_dbus_server_{init,cleanup}

Reported-by: Michael Tautschnig <mt@debian.org>
Bug-Debian: https://bugs.debian.org/749001

https://bugzilla.gnome.org/show_bug.cgi?id=769943
---
 daemon/seahorse-daemon.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/daemon/seahorse-daemon.h b/daemon/seahorse-daemon.h
index 93c0c452..09716bb5 100644
--- a/daemon/seahorse-daemon.h
+++ b/daemon/seahorse-daemon.h
@@ -24,9 +24,9 @@
 /* seahorse-dbus-server.c --------------------------------------------------- */
 
 
-gboolean            seahorse_dbus_server_init ();
+void                seahorse_dbus_server_init ();
 
-gboolean            seahorse_dbus_server_cleanup ();
+void                seahorse_dbus_server_cleanup ();
 
 DBusGConnection*    seahorse_dbus_server_get_connection ();
 
-- 
2.14.1