Fix dlog format error #2 29/196629/1 accepted/tizen_5.5_unified accepted/tizen_5.5_unified_mobile_hotfix accepted/tizen_5.5_unified_wearable_hotfix tizen_5.5 tizen_5.5_mobile_hotfix tizen_5.5_tv tizen_5.5_wearable_hotfix accepted/tizen/5.5/unified/20191031.014434 accepted/tizen/5.5/unified/mobile/hotfix/20201027.081649 accepted/tizen/5.5/unified/wearable/hotfix/20201027.123027 accepted/tizen/unified/20190104.061317 submit/tizen/20190103.074039 submit/tizen_5.5/20191031.000001 submit/tizen_5.5_mobile_hotfix/20201026.185101 submit/tizen_5.5_wearable_hotfix/20201026.184301 tizen_5.5.m2_release
authorSeonah Moon <seonah1.moon@samsung.com>
Thu, 3 Jan 2019 05:34:41 +0000 (14:34 +0900)
committerSeonah Moon <seonah1.moon@samsung.com>
Thu, 3 Jan 2019 05:35:12 +0000 (14:35 +0900)
Change-Id: I5b7ec49dabe1d7f0285e0fd2cc19bb34623df3df
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
src/download-manager-history-db.cpp

index ff7e542..6386d2b 100755 (executable)
@@ -925,7 +925,7 @@ bool DownloadHistoryDB::deleteMultipleItem(queue <unsigned int> &q)
                return false;
        }
 
-       DM_LOGI("queue size[%lu]", q.size());
+       DM_LOGI("queue size[%zd]", q.size());
        while (!q.empty()) {
                ret = sqlite3_prepare_v2(historyDb, "delete from history where historyid=?",
                        -1, &stmt, NULL);