Fix 64bit compile error 89/199989/1
authorDaehyeon Jung <darrenh.jung@samsung.com>
Thu, 14 Feb 2019 06:43:35 +0000 (15:43 +0900)
committer정대현/Tizen Platform Lab(SR)/Staff Engineer/삼성전자 <darrenh.jung@samsung.com>
Thu, 14 Feb 2019 10:50:10 +0000 (19:50 +0900)
Change-Id: Iead213ad4a897b729d10924ce43912b93bc3e8e5

src/common/mdg_manager.cc

index 1263fb7ca899321b202b57306fec9e1f621c52de..997589bafff656d629b88db67c254afd8ba7e317 100644 (file)
@@ -71,8 +71,8 @@ void SendDataFinishCb(int result, mdg_device_h device, char* channel_id,
   capmgr::DBusService::SendAppControlReply(msg_id, data, len);
 }
 
-void SendFileProgressCb(const char* file_path_, int64_t send_size,
-    int64_t total_size, int percent, void* user_data) {
+void SendFileProgressCb(const char* file_path_, long long int send_size,
+    long long int total_size, int percent, void* user_data) {
   std::string file_path = std::string(file_path_);
   LOG(INFO) << "SendFileProgressCb called. "
             << "file_path: " << file_path