Replace XFree with just free.

NB: XFree calls 'free' anyway, so this saves us a function call

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2013-07-08 12:28:15 +01:00
parent d7193f2830
commit e33391ef56
1 changed files with 1 additions and 2 deletions

View File

@ -1201,8 +1201,7 @@ ecore_x_e_window_profile_list_get(Ecore_X_Window win,
(*profiles)[i] = ecore_x_atom_name_get(atoms[i]);
}
if (data)
XFree(data);
if (data) free(data);
return EINA_TRUE;
}