Fixed 64 bit type format
[platform/core/connectivity/stc-manager.git] / src / database / tables / table-statistics.c
index ffb4b97..7670e28 100755 (executable)
@@ -585,8 +585,8 @@ API stc_error_e table_statistics_insert(stc_db_classid_iftype_key *stat_key,
        stc_error_e error_code = STC_ERROR_NONE;
        sqlite3_stmt *stmt = update_statistics_query;
        stc_hw_net_protocol_type_e hw_net_protocol_type = STC_PROTOCOL_UNKNOWN;
-       int64_t rcv;
-       int64_t snd;
+       long long int rcv;
+       long long int snd;
 
        if (!stat->rcv_count && !stat->snd_count) {
                error_code = STC_ERROR_INVALID_PARAMETER;