From 5b78383bf9cc9c374373f12717216e44f3494ddc Mon Sep 17 00:00:00 2001 From: Jaeho Lee Date: Mon, 25 Mar 2013 10:44:12 +0900 Subject: [PATCH] fixed build error Signed-off-by: Jaeho Lee --- packaging/app-core.spec | 2 +- src/appcore-efl.c | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) 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) { -- 2.7.4