cv: Switch to safe 32/64 bits printf masks

This should silence 32-bit warnings about long long stuff

Reviewers: vtorri, cedric, bu5hm4n

Reviewed By: cedric

Subscribers: #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D10214
This commit is contained in:
Lauro Moura 2019-10-11 09:41:16 -04:00 committed by Mike Blumenkrantz
parent 8bc12c2dff
commit 243d9700e9
1 changed files with 4 additions and 3 deletions

View File

@ -13,6 +13,7 @@
#include <Elementary.h>
#include "elm_widget.h"
#include "elm_priv.h"
#include "inttypes.h"
#include "efl_ui_collection_view_focus_manager.eo.h"
@ -418,7 +419,7 @@ _model_fetched_cb(Eo *obj, void *data, const Eina_Value v)
efl_replace(&insert->item.model, child);
}
else
ERR("Inserting a model that was already fetched, dropping new model %lu", search_index);
ERR("Inserting a model that was already fetched, dropping new model %" PRIu64, search_index);
}
else
{
@ -592,7 +593,7 @@ _entity_fetched_cb(Eo *obj, void *data, const Eina_Value v)
}
if (lookup->item.entity)
{
ERR("Entity already existing for id %lu", search_index);
ERR("Entity already existing for id %" PRIu64, search_index);
_entity_cleanup(obj, pd->factory, &lookup->item, NULL);
}
@ -879,7 +880,7 @@ _batch_request_flush(Eina_List *requests,
// We assume here that we are always fetching the model (model_requested must be true)
if (!request->model_requested)
{
CRI("Someone forgot to set model_requested for %lu to %lu.",
CRI("Someone forgot to set model_requested for %" PRIu64 " to %" PRIu64 ".",
request->offset, request->offset + request->length);
request->model_requested = EINA_TRUE;
}