Remove unnecessary space and line 09/88709/1
authorseungha.son <seungha.son@samsung.com>
Tue, 20 Sep 2016 09:12:13 +0000 (18:12 +0900)
committerseungha.son <seungha.son@samsung.com>
Tue, 20 Sep 2016 09:13:04 +0000 (18:13 +0900)
Signed-off-by: seungha.son <seungha.son@samsung.com>
Change-Id: Ice9531ebccb66f24128716506590926f75cd0dc6

src/notification.c

index c012d5b..30fbf9b 100755 (executable)
@@ -1407,7 +1407,7 @@ static notification_h _notification_create(notification_type_e type)
                return NULL;
        }
 
-       noti = (notification_h) calloc(1, sizeof(struct _notification));
+       noti = (notification_h)calloc(1, sizeof(struct _notification));
        if (noti == NULL) {
                NOTIFICATION_ERR("NO MEMORY : noti == NULL");
                set_last_result(NOTIFICATION_ERROR_OUT_OF_MEMORY);
@@ -1452,7 +1452,6 @@ static notification_h _notification_create(notification_type_e type)
                        goto out;
                }
 
-
                err_app_manager = package_info_create(noti->caller_pkgname, &package_info);
 
                if (err_app_manager != PACKAGE_MANAGER_ERROR_NONE || package_info == NULL) {