From ae0277944bdd33ddd492b1c47f65bd77c89e585e Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Sat, 27 Sep 2014 16:31:03 +0900 Subject: [PATCH] cast properly --- mrk-index.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mrk-index.c b/mrk-index.c index 27c8c20..3fd607c 100644 --- a/mrk-index.c +++ b/mrk-index.c @@ -200,7 +200,7 @@ index_out_cb(const Eina_Hash *hash, const void *key, void *data, void *fdata) FILE *f = fdata; const char *s; - fprintf(f, "%s\n", key); + fprintf(f, "%s\n", (const char *)key); EINA_LIST_FREE(data, s) { fprintf(f, "\t%s\n", s);