summaryrefslogtreecommitdiff
path: root/src/libtracker-bus
diff options
context:
space:
mode:
authorPhilip Van Hoof <philip@codeminded.be>2010-12-06 13:11:39 +0100
committerPhilip Van Hoof <philip@codeminded.be>2010-12-06 13:11:39 +0100
commitbb99beea68f5c5ec48bbba28d85d86d1b6eb6c2f (patch)
tree8a9e1ad739c2a81205463334e9850f6a99e40015 /src/libtracker-bus
parenta2fe8711d0a0b348b016d9f7cdfeb9f696680d67 (diff)
downloadtracker-bb99beea68f5c5ec48bbba28d85d86d1b6eb6c2f.tar.gz
libtracker-sparql, libtracker-bus: Fix compilation warning in vala code
Diffstat (limited to 'src/libtracker-bus')
-rw-r--r--src/libtracker-bus/tracker-bus.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libtracker-bus/tracker-bus.vala b/src/libtracker-bus/tracker-bus.vala
index 52970caf1..e17c9fc29 100644
--- a/src/libtracker-bus/tracker-bus.vala
+++ b/src/libtracker-bus/tracker-bus.vala
@@ -198,7 +198,7 @@ public class Tracker.Bus.Connection : Tracker.Sparql.Connection {
}
}
- public async override GenericArray<Error?> update_array_async (string[] sparql, int priority = GLib.Priority.DEFAULT, Cancellable? cancellable = null) throws Sparql.Error, IOError, DBusError {
+ public async override GenericArray<Error?>? update_array_async (string[] sparql, int priority = GLib.Priority.DEFAULT, Cancellable? cancellable = null) throws Sparql.Error, IOError, DBusError {
UnixInputStream input;
UnixOutputStream output;
pipe (out input, out output);