devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=8404e3c180d38d3cc5102a0dbb7456c2a9e73d8a
commit 8404e3c180d38d3cc5102a0dbb7456c2a9e73d8a Author: Chris Michael <devilho...@comcast.net> Date: Thu Sep 26 20:07:01 2013 +0100 Fix uninitialized variable warning. Signed-off-by: Chris Michael <devilho...@comcast.net> --- src/bin/e_randr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_randr.c b/src/bin/e_randr.c index ec85b6d..faf0c96 100644 --- a/src/bin/e_randr.c +++ b/src/bin/e_randr.c @@ -848,7 +848,7 @@ _e_randr_event_cb_output_change(void *data EINA_UNUSED, int type EINA_UNUSED, vo if (ocfg) { - Ecore_X_Randr_Mode mode; + Ecore_X_Randr_Mode mode = 0; int x = 0, y = 0, orient = 0; printf("\t\t\tHave Primary Output Config %d\n", ocfg->xid); --