From: Volodymyr Brynza Date: Tue, 22 Dec 2015 09:32:57 +0000 (+0200) Subject: add_defer() function fix X-Git-Tag: submit/tizen/20151224.065653^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F79%2F55179%2F1;p=platform%2Fupstream%2Fmurphy.git add_defer() function fix Change-Id: Ib12559ca8338ec215a6ec50c2f4f1c8d69c13ee0 Signed-off-by: Volodymyr Brynza --- diff --git a/src/common/glib-glue.c b/src/common/glib-glue.c index 8ffd3a8..247744d 100644 --- a/src/common/glib-glue.c +++ b/src/common/glib-glue.c @@ -260,7 +260,7 @@ static void *add_defer(void *glue_data, d = mrp_allocz(sizeof(*d)); if (d != NULL) { - d->gl_t = g_timeout_add(0, defer_cb, d); + d->gl_t = g_timeout_add(1, defer_cb, d); if (d->gl_t != 0) { d->cb = cb;