aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Blandy <jimb@codesourcery.com>2004-12-17 22:19:51 +0000
committerJim Blandy <jimb@codesourcery.com>2004-12-17 22:19:51 +0000
commit1ee455f4ea4fa1d98798d8ec1402bfaa5b9ccf70 (patch)
tree6ef8739991ec6592ecaed6379f89a3ccbe2096f4
parent1c95a4acbfed1c429dd3abdde1c71878db69d5f6 (diff)
downloadgdb-1ee455f4ea4fa1d98798d8ec1402bfaa5b9ccf70.zip
gdb-1ee455f4ea4fa1d98798d8ec1402bfaa5b9ccf70.tar.gz
gdb-1ee455f4ea4fa1d98798d8ec1402bfaa5b9ccf70.tar.bz2
* remote.c (fetch_register_using_p): Indentation cleanup.
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/remote.c22
2 files changed, 15 insertions, 11 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 6e96d23..22e3d5f 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2004-12-17 Jim Blandy <jimb@redhat.com>
+
+ * remote.c (fetch_register_using_p): Indentation cleanup.
+
2004-12-17 Randolph Chung <tausq@debian.org>
* hppa-hpux-tdep.c (setup_d_pid_in_inferior): Make static.
diff --git a/gdb/remote.c b/gdb/remote.c
index 8f7a181..250be70 100644
--- a/gdb/remote.c
+++ b/gdb/remote.c
@@ -3193,21 +3193,21 @@ fetch_register_using_p (int regnum)
*p++ = '\0';
remote_send (buf, rs->remote_packet_size);
if (buf[0] != 0 && buf[0] != 'E') {
- p = buf;
- i = 0;
- while (p[0] != 0) {
- if (p[1] == 0) {
- error("fetch_register_using_p: early buf termination");
- return 0;
- }
- regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
- p += 2;
+ p = buf;
+ i = 0;
+ while (p[0] != 0) {
+ if (p[1] == 0) {
+ error("fetch_register_using_p: early buf termination");
+ return 0;
+ }
+ regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
+ p += 2;
}
regcache_raw_supply (current_regcache, regnum, regp);
return 1;
- }
+ }
- return 0;
+ return 0;
}
static void