* i386-linux-nat.c (fill_gregset): Remove redundant parentheses.

This commit is contained in:
Mark Kettenis
2002-06-15 14:03:10 +00:00
parent 57976e88bb
commit 099a94140a
2 changed files with 3 additions and 1 deletions

View File

@@ -329,7 +329,7 @@ fill_gregset (elf_gregset_t *gregsetp, int regno)
int i;
for (i = 0; i < NUM_GREGS; i++)
if ((regno == -1 || regno == i))
if (regno == -1 || regno == i)
regcache_collect (i, regp + regmap[i]);
if ((regno == -1 || regno == I386_LINUX_ORIG_EAX_REGNUM)