From 9a286bac436bc6032c7df3aa563e551058be9ce5 Mon Sep 17 00:00:00 2001 From: Christopher Rosendahl Date: Sun, 21 Oct 2001 13:04:22 +0000 Subject: [PATCH] .... that was bad =) SVN revision: 5542 --- legacy/ecore/src/e_x.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy/ecore/src/e_x.c b/legacy/ecore/src/e_x.c index 88b173a8a7..f426ecbef8 100644 --- a/legacy/ecore/src/e_x.c +++ b/legacy/ecore/src/e_x.c @@ -2341,13 +2341,13 @@ ecore_window_get_command(Window win) s = NULL; size = strlen(cargv[0]); - REALLOC(s, char, size + 1); + REALLOC(s, char *, size + 1); strcpy(s, cargv[0]); for (i = 1; i < cargc; i++) { size += strlen(cargv[i]); - REALLOC(s, char, size + 2); + REALLOC(s, char *, size + 2); strcat(s, " "); strcat(s, cargv[i]);