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>
This commit is contained in:
Srivardhan Hebbar 2015-10-19 11:24:49 -07:00 committed by Cedric BAIL
parent c406cf79e1
commit e2167fe2a0
1 changed files with 0 additions and 1 deletions

View File

@ -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