diff options
author | Mark Kettenis <kettenis@gnu.org> | 2002-06-15 14:03:10 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2002-06-15 14:03:10 +0000 |
commit | 9d2b72880377685f316adc5ad69ae8e750e8b5ef (patch) | |
tree | 68bbf454fe66b78d398bdd478b522b1aab667e9f /gdb/i386-linux-nat.c | |
parent | 638f77fbf9a167615565ef567a55588dd8c831ea (diff) | |
download | gdb-9d2b72880377685f316adc5ad69ae8e750e8b5ef.tar.gz |
* i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
Diffstat (limited to 'gdb/i386-linux-nat.c')
-rw-r--r-- | gdb/i386-linux-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/i386-linux-nat.c b/gdb/i386-linux-nat.c index 26f5aaf85ab..aecca1d8251 100644 --- a/gdb/i386-linux-nat.c +++ b/gdb/i386-linux-nat.c @@ -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) |