tasn pushed a commit to branch master. http://git.enlightenment.org/tools/clouseau.git/commit/?id=9935915231e8e3b6ec3e647eb55905e920d408dc
commit 9935915231e8e3b6ec3e647eb55905e920d408dc Author: Tom Hacohen <t...@stosb.com> Date: Tue Dec 31 13:55:06 2013 +0000 Fixed assignment of NULL to an int (changed to 0). --- src/bin/clouseau_client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/clouseau_client.c b/src/bin/clouseau_client.c index dc5aedb..260d788 100644 --- a/src/bin/clouseau_client.c +++ b/src/bin/clouseau_client.c @@ -2176,7 +2176,7 @@ _obj_info_gl_item_text_get(void *data, Evas_Object *obj EINA_UNUSED, { /* We treat UINT64 as a pointer. */ - uint64_t ptr = NULL; + uint64_t ptr = 0; eina_value_get(&(eo->value), &ptr); snprintf(buf, sizeof(buf), "%s: %p", eo->name, (void *) (uintptr_t) ptr); } --