* i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
[deliverable/binutils-gdb.git] / gdb / i386-linux-nat.c
index 26f5aaf85ab23e2dfb60b39686c79f93e7f22488..aecca1d825150e1cabe7545fc91fc47d7a653e6e 100644 (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)
This page took 0.023048 seconds and 4 git commands to generate.