summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2013-04-05 14:00:59 +0200
committerAlexander Larsson <alexl@redhat.com>2013-04-05 14:00:59 +0200
commit210dab51a9db47795b03d3090c3ffdfd3bf3a1df (patch)
tree5f6b3d56399c60e5a55fb33794d28b556a9fd3c4
parentde374faaff6b17ff2c65087b22e517410af4b6bc (diff)
GVfsJobError: Return TRUE in try
This fixes a warning and a potentially useless call of do() method in a thread.
-rw-r--r--daemon/gvfsjoberror.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/daemon/gvfsjoberror.c b/daemon/gvfsjoberror.c
index 46efb9ad..409f6635 100644
--- a/daemon/gvfsjoberror.c
+++ b/daemon/gvfsjoberror.c
@@ -103,4 +103,5 @@ static gboolean
try (GVfsJob *job)
{
g_vfs_job_failed_from_error (job, G_VFS_JOB_ERROR (job)->error);
+ return TRUE;
}