Remove assignment to unused variable

p isn't used after this, so no need to assign it.

Fixes CID 1039757
This commit is contained in:
Sebastian Dransfeld 2013-12-07 22:13:37 +01:00
parent fcc82e3e34
commit e891ac7c16
1 changed files with 1 additions and 1 deletions

View File

@ -1221,7 +1221,7 @@ _e_main_parse_arguments(int argc, char **argv)
}
else
{
if (!(p = strrchr(p, '.')))
if (!strrchr(p, '.'))
{
snprintf(buff, sizeof(buff), "%s.0", s);
e_util_env_set("DISPLAY", buff);