* remote.c (fetch_register_using_p): Indentation cleanup.
authorJim Blandy <jimb@codesourcery.com>
Fri, 17 Dec 2004 22:19:51 +0000 (22:19 +0000)
committerJim Blandy <jimb@codesourcery.com>
Fri, 17 Dec 2004 22:19:51 +0000 (22:19 +0000)
gdb/ChangeLog
gdb/remote.c

index 6e96d2374a5af7e2a3cb25cb1eeb55564ef49f4e..22e3d5fdc5697292b1c38818570c991296d4de9c 100644 (file)
@@ -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.
index 8f7a181e118c2c199984266585d617bd4191b0ba..250be7008dcaf586223720520a868bc08a561792 100644 (file)
@@ -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
This page took 0.036041 seconds and 4 git commands to generate.