evas: Fix casts

Signed-off-by: Mike McCormack <mikem@atratus.org>

SVN revision: 77641
This commit is contained in:
Mike McCormack 2012-10-09 11:59:44 +00:00 committed by Mike McCormack
parent 616e6b4a6a
commit fbdbbab4ef
1 changed files with 2 additions and 2 deletions

View File

@ -1923,7 +1923,7 @@ cserve2_cache_file_open(Client *client, unsigned int client_file_id, const char
entry->key = strdup(key);
entry->base.id = file_id;
eina_hash_add(file_entries, &file_id, entry);
eina_hash_add(file_ids, buf, (intptr_t*)(int64_t)file_id);
eina_hash_add(file_ids, buf, (void*)(intptr_t)file_id);
ref = _entry_reference_add((Entry *)entry, client, client_file_id);
eina_hash_add(client->files.referencing, &client_file_id, ref);
@ -2024,7 +2024,7 @@ cserve2_cache_image_opts_set(Client *client, Msg_Setopts *msg)
entry->base.id = image_id;
eina_hash_add(image_entries, &image_id, entry);
eina_hash_add(image_ids, buf, (intptr_t *)(int64_t)image_id);
eina_hash_add(image_ids, buf, (void *)(intptr_t)image_id);
ref = _entry_reference_add((Entry *)entry, client, msg->image_id);
if (oldref)