Update icon service - fix build error (serice_h -> app_control_)
authorSung-jae Park <nicesj.park@samsung.com>
Thu, 17 Jul 2014 08:34:47 +0000 (17:34 +0900)
committerSung-jae Park <nicesj.park@samsung.com>
Thu, 17 Jul 2014 08:34:47 +0000 (17:34 +0900)
Change-Id: I9f8ebc01fb7474f33d9ddd13f24a551f86dbf592

icon_src/main.c

index e1f2c9f..4ef8a0e 100644 (file)
@@ -517,7 +517,7 @@ static void app_resume(void *data)
        return;
 }
 
-static void app_service(service_h service, void *data)
+static void app_control(app_control_h service, void *data)
 {
 }
 
@@ -530,7 +530,7 @@ int main(int argc, char *argv[])
        event_callback.terminate = app_terminate;
        event_callback.pause = app_pause;
        event_callback.resume = app_resume;
-       event_callback.service = app_service;
+       event_callback.app_control = app_control;
        event_callback.low_memory = NULL;
        event_callback.low_battery = NULL;
        event_callback.device_orientation = NULL;