fixed Data Change Sync image.
authorIckhee Woo <ickhee.woo@samsung.com>
Fri, 18 Sep 2015 02:44:16 +0000 (11:44 +0900)
committerIckhee Woo <ickhee.woo@samsung.com>
Fri, 18 Sep 2015 02:54:46 +0000 (11:54 +0900)
Change-Id: Iad6c748511d4a80636a07fac6e5924b21e40a094
Signed-off-by: Ickhee Woo <ickhee.woo@samsung.com>
org.tizen.sampledescriptions/html/images/syncadapterapp_datachange.png
org.tizen.sampledescriptions/html/mobile_n/syncadapterserviceapp_sd_mn.htm

index eb0cb54..e1038ab 100644 (file)
Binary files a/org.tizen.sampledescriptions/html/images/syncadapterapp_datachange.png and b/org.tizen.sampledescriptions/html/images/syncadapterapp_datachange.png differ
index 31fce8e..0578477 100644 (file)
@@ -69,7 +69,7 @@ int create_database()
        char* sql_command = "CREATE TABLE IF NOT EXISTS sync_data ( TITLE TEXT)";
        int open_flags = (SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE);
 
-       int ret = sqlite3_open_v2(DB_PATH, &db, open_flags, NULL);
+       int ret = sqlite3_open_v2(DB_PATH, &amp;db, open_flags, NULL);
        if (ret != SQLITE_OK)
        {
                LOGE("database creation failed with error: %d",ret);