diff options
Diffstat (limited to 'src/lib.c')
-rw-r--r-- | src/lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |