From: Jaeho Lee Date: Mon, 25 Mar 2013 01:44:12 +0000 (+0900) Subject: fixed build error X-Git-Tag: submit/tizen_2.1/20130424.230748~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5b78383bf9cc9c374373f12717216e44f3494ddc;p=platform%2Fcore%2Fappfw%2Fapp-core.git fixed build error Signed-off-by: Jaeho Lee --- diff --git a/packaging/app-core.spec b/packaging/app-core.spec index 7b2a910..8e48942 100644 --- a/packaging/app-core.spec +++ b/packaging/app-core.spec @@ -1,7 +1,7 @@ Name: app-core Summary: Application basic Version: 1.2 -Release: 41 +Release: 42 Group: Application Framework License: Apache License, Version 2.0 Source0: app-core-%{version}.tar.gz diff --git a/src/appcore-efl.c b/src/appcore-efl.c index 4ab2360..6f88d85 100755 --- a/src/appcore-efl.c +++ b/src/appcore-efl.c @@ -119,6 +119,10 @@ struct win_node { static struct ui_wm_rotate wm_rotate; +static inline int send_int(int fd, int val) +{ + return write(fd, &val, sizeof(int)); +} static inline int send_str(int fd, char *str) {