Correct build error 15/17015/2
authorKévin THIERRY <kevin.thierry@open.eurogiciel.org>
Thu, 27 Feb 2014 11:15:10 +0000 (12:15 +0100)
committerKévin THIERRY <kevin.thierry@open.eurogiciel.org>
Wed, 12 Mar 2014 07:33:32 +0000 (08:33 +0100)
Replace incorrect type value "unsigned int" for "size_t" of variable
length in function SocketFrontEnd::socket_set_imdata
(ism/modules/frontend/scim_socket_frontend.cpp).

Bug-Tizen: PTREL-731
Change-Id: If3436e39989ba20130e2e26d2214e51431a568d7
Signed-off-by: Kévin THIERRY <kevin.thierry@open.eurogiciel.org>
ism/modules/frontend/scim_socket_frontend.cpp

index 7153799c99fccba81a510fe38bab0f5f466f2728..4e5a1b41df8cec74654fcc9272fdb088e27eaea8 100644 (file)
@@ -1573,7 +1573,7 @@ SocketFrontEnd::socket_set_imdata (int /*client_id*/)
 {
     uint32 siid;
     char *imdata = NULL;
-    unsigned int length;
+    size_t length;
 
     SCIM_DEBUG_FRONTEND (2) << __func__ << "\n";