Fix a dlog tag to print DB row_id properly 53/49753/1
authorMu-Woong <muwoong.lee@samsung.com>
Tue, 20 Oct 2015 04:33:31 +0000 (13:33 +0900)
committerMu-Woong <muwoong.lee@samsung.com>
Tue, 20 Oct 2015 04:33:31 +0000 (13:33 +0900)
Change-Id: Iccf03744c854cf78b31b4a5e185daefbf43fe2be
Signed-off-by: Mu-Woong <muwoong.lee@samsung.com>
src/db_mgr_impl.cpp

index b2290393a07b679cb410fd3591543d747ea60605..795bacccd65e633b697003995b60a4d27779798f 100644 (file)
@@ -364,7 +364,7 @@ bool ctx::db_manager_impl::insert_sync(const char* table_name, json& record, int
 
        *row_id = -1;
        query_result.at(0).get(NULL, "seq", row_id);
-       _D("RowId: %d", *row_id);
+       _D("RowId: %lld", *row_id);
 
        return true;
 }