extra: fix if statement
authormunkyu.im <munkyu.im@samsung.com>
Mon, 4 Feb 2013 05:21:52 +0000 (14:21 +0900)
committermunkyu.im <munkyu.im@samsung.com>
Mon, 4 Feb 2013 05:21:52 +0000 (14:21 +0900)
Signed-off-by: munkyu.im <munkyu.im@samsung.com>
tizen/src/skin/maruskin_operation.c

index 974a3fa54d3a049aa5de4be2f23f6d160554bc0c..ee20b5760f0d3e96abc791f4496581cda79b8ff1 100644 (file)
@@ -594,7 +594,7 @@ static void send_to_emuld( const char* request_type, int request_size, const cha
     if(send( s, &buf_size, 4, 0 ) < 0) {
         ERR("failed to send to emuld\n");
     }
-    send( s, (char*)send_buf, buf_size, 0 ) {
+    if(send( s, (char*)send_buf, buf_size, 0 ) < 0) {
         ERR("failed to send to emuld\n");
     }