diff --git a/src/bin/main.c b/src/bin/main.c index f5b8eefe..3844de94 100644 --- a/src/bin/main.c +++ b/src/bin/main.c @@ -144,7 +144,7 @@ static const Ecore_Getopt options = { "%prog [options]", PACKAGE_VERSION, "(C) 2012 Carsten Haitzler", - "GPL-2", + "BSD 2-Clause", "Terminal emulator written with Enlightenment Foundation Libraries.", EINA_TRUE, { diff --git a/src/bin/termio.c b/src/bin/termio.c index 7fe78d02..8bc1602c 100644 --- a/src/bin/termio.c +++ b/src/bin/termio.c @@ -69,7 +69,7 @@ _smart_apply(Evas_Object *obj) { Termio *sd = evas_object_smart_data_get(obj); Evas_Coord ox, oy, ow, oh; - int j, x, y, w, ch1, ch2; + int j, x, y, w, ch1 = 0, ch2 = 0; if (!sd) return; evas_object_geometry_get(obj, &ox, &oy, &ow, &oh); @@ -330,7 +330,7 @@ _smart_cb_change(void *data) Evas_Object *obj = data; Termio *sd; sd = evas_object_smart_data_get(obj); - if (!sd) return; + if (!sd) return EINA_FALSE; sd->anim = NULL; _smart_apply(obj); evas_object_smart_callback_call(obj, "changed", NULL);