mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-15 04:32:24 +00:00
dtimsstart: Fix brackets on previous coverity fix
This commit is contained in:
parent
f2c6a48d72
commit
ac168d8918
1 changed files with 1 additions and 1 deletions
|
@ -336,7 +336,7 @@ int make_new_environ(oenv, sel)
|
|||
}
|
||||
# endif /* old_hpux */
|
||||
for (i = 0; i < num && (p = unsetp[i]); i++) {
|
||||
if (strcmp(p, xmod) == 0 || (xinput && strcmp(p, xinput)) == 0)
|
||||
if (strcmp(p, xmod) == 0 || (xinput && (strcmp(p, xinput) == 0)))
|
||||
continue;
|
||||
if (oenv->set) {
|
||||
for (ep2 = oenv->set; ep2->name; ep2++)
|
||||
|
|
Loading…
Reference in a new issue