From 9ba717d38bdc84e72b65096857bb0c0586148b24 Mon Sep 17 00:00:00 2001 From: poetwang Date: Sat, 24 Aug 2013 13:02:18 +0800 Subject: [PATCH] Fix the bug of cast int GType to int --- lib/searpc-client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/searpc-client.c b/lib/searpc-client.c index 6b61e8f..9fd669a 100644 --- a/lib/searpc-client.c +++ b/lib/searpc-client.c @@ -312,7 +312,7 @@ typedef struct { SearpcClient *client; AsyncCallback callback; const gchar *ret_type; - int gtype; /* to specify the specific gobject type + GType gtype; /* to specify the specific gobject type if ret_type is object or objlist */ void *cbdata; } AsyncCallData;