summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSrivardhan Hebbar <sri.hebbar@samsung.com>2015-10-19 11:24:49 -0700
committerCedric BAIL <cedric@osg.samsung.com>2015-10-19 11:24:52 -0700
commite2167fe2a00e75740fc62fdf826d25b919bcd732 (patch)
tree685a67259f1af48dd12c33cc10baab23ecdb0958
parentc406cf79e1d2ab3ee2f28828d14fda3c513d1814 (diff)
downloadefl-e2167fe2a00e75740fc62fdf826d25b919bcd732.tar.gz
ecore_x: removing useless assignment.
Summary: The assigned value has no effect outside the function. So removing it. Signed-off-by: Srivardhan Hebbar <sri.hebbar@samsung.com> Reviewers: cedric Differential Revision: https://phab.enlightenment.org/D3181 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
-rw-r--r--src/lib/ecore_x/xlib/ecore_x_randr.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/ecore_x/xlib/ecore_x_randr.c b/src/lib/ecore_x/xlib/ecore_x_randr.c
index 99d630c02c..1a948572dd 100644
--- a/src/lib/ecore_x/xlib/ecore_x_randr.c
+++ b/src/lib/ecore_x/xlib/ecore_x_randr.c
@@ -897,7 +897,6 @@ ecore_x_randr_mode_info_free(Ecore_X_Randr_Mode_Info *mode_info)
{
if (mode_info->name) free(mode_info->name);
free(mode_info);
- mode_info = NULL;
}
}
#endif