Remoe last trailing comma
authorSung-jae Park <nicesj.park@samsung.com>
Wed, 3 Jul 2013 23:43:57 +0000 (08:43 +0900)
committerSung-jae Park <nicesj.park@samsung.com>
Wed, 3 Jul 2013 23:43:57 +0000 (08:43 +0900)
Change-Id: I682b97cd2f68a7436ba0bee7ca87725fb5c2a312

include/provider.h
include/provider_buffer.h
include/provider_buffer_internal.h
packaging/libprovider.spec
src/fb.c

index 4f6b378..9e3d824 100644 (file)
@@ -70,7 +70,7 @@ struct event_arg {
                EVENT_LB_RESUME, /*!< Thaw the update timer of a specified livebox */
 
                EVENT_PD_ACCESS, /* PD: Accessibility event */
-               EVENT_LB_ACCESS, /* LB: Accessibility event */
+               EVENT_LB_ACCESS /* LB: Accessibility event */
        } type;
        const char *pkgname; /*!< Package name of a livebox */
        const char *id; /*!< Instance Id of a livebox */
index 8f76876..9a5204e 100644 (file)
@@ -28,7 +28,7 @@ extern "C" {
 enum target_type {
        TYPE_LB, /*!< */
        TYPE_PD, /*!< */
-       TYPE_ERROR, /*!< */
+       TYPE_ERROR /*!< */
 };
 
 /*!
@@ -54,7 +54,7 @@ enum buffer_event {
        BUFFER_EVENT_SCROLL_UP,
        BUFFER_EVENT_SCROLL_MOVE,
        BUFFER_EVENT_SCROLL_DOWN,
-       BUFFER_EVENT_UNHIGHLIGHT,
+       BUFFER_EVENT_UNHIGHLIGHT
 };
 
 struct livebox_buffer;
index 920d0f1..a6971e8 100644 (file)
@@ -17,7 +17,7 @@
 struct livebox_buffer {
        enum {
                BUFFER_CREATED = 0x00beef00,
-               BUFFER_DESTROYED = 0x00dead00,
+               BUFFER_DESTROYED = 0x00dead00
        } state;
 
        enum target_type type;
index 08bce87..a5c5162 100644 (file)
@@ -1,6 +1,6 @@
 Name: libprovider
 Summary: Library for developing the livebox service provider.
-Version: 0.9.4
+Version: 0.9.5
 Release: 1
 Group: HomeTF/Livebox
 License: Flora License
index 66f8475..9b49bfb 100644 (file)
--- a/src/fb.c
+++ b/src/fb.c
@@ -55,13 +55,13 @@ enum buffer_type { /*!< Must have to be sync with libprovider, liblivebox-viewer
        BUFFER_TYPE_FILE,
        BUFFER_TYPE_SHM,
        BUFFER_TYPE_PIXMAP,
-       BUFFER_TYPE_ERROR,
+       BUFFER_TYPE_ERROR
 };
 
 struct buffer { /*!< Must has to be sync with slave & provider */
        enum {
                CREATED = 0x00beef00,
-               DESTROYED = 0x00dead00,
+               DESTROYED = 0x00dead00
        } state;
        enum buffer_type type;
        int refcnt;