summaryrefslogtreecommitdiff
path: root/src/lib.c
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2014-07-17 15:11:00 (GMT)
committerNirbheek Chauhan <nirbheek@centricular.com>2014-07-17 15:11:00 (GMT)
commit8437746494e6d414314f03a0b815dcf0b191ce4d (patch)
treea4a91bb93303b84cb3e30d70fe856a5d88fcf508 /src/lib.c
parente0f6ea3901e1dd767b0b33e9bcea5b3c9c09d42e (diff)
downloadsoup-transcoding-proxy-8437746494e6d414314f03a0b815dcf0b191ce4d.zip
soup-transcoding-proxy-8437746494e6d414314f03a0b815dcf0b191ce4d.tar.gz
Use G_SOURCE_REMOVE instead of FALSE
Diffstat (limited to 'src/lib.c')
-rw-r--r--src/lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.c b/src/lib.c
index a986f30..2fe0c94 100644
--- a/src/lib.c
+++ b/src/lib.c
@@ -28,14 +28,14 @@ static gboolean
invoke_g_hash_table_remove (TranscodeServerCtx *ctx)
{
g_hash_table_remove (ctx->parent_ctx_table, ctx->path);
- return FALSE;
+ return G_SOURCE_REMOVE;
}
static gboolean
invoke_g_free_client_context (TranscodeClientCtx *ctx)
{
g_free (ctx);
- return FALSE;
+ return G_SOURCE_REMOVE;
}
gboolean