* remote.c (fetch_register_using_p): Fix formatting.
authorJim Blandy <jimb@codesourcery.com>
Tue, 21 Dec 2004 21:24:56 +0000 (21:24 +0000)
committerJim Blandy <jimb@codesourcery.com>
Tue, 21 Dec 2004 21:24:56 +0000 (21:24 +0000)
gdb/ChangeLog
gdb/remote.c

index b55c60ad43d39d99614b35fdf381988d12e46da4..c752aa34bfb29a5ffa71deba903bcdc3fba1c2fb 100644 (file)
@@ -1,3 +1,7 @@
+2004-12-21  Jim Blandy  <jimb@redhat.com>
+
+       * remote.c (fetch_register_using_p): Fix formatting.
+       
 2004-12-21  Paul N. Hilfinger  <hilfingr@otisco.mckusick.com>
 
        * ada-lang.c (ada_print_subexp): Remove i18n markup from Ada code
index 250be7008dcaf586223720520a868bc08a561792..9bbe603de6124723df02237bd4abfd60251fb4ee 100644 (file)
@@ -3192,20 +3192,23 @@ fetch_register_using_p (int regnum)
   p += hexnumstr (p, 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;
+  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;
+       }
+      regcache_raw_supply (current_regcache, regnum, regp);
+      return 1;
     }
-    regcache_raw_supply (current_regcache, regnum, regp);
-    return 1;
-  }
 
   return 0;
 }
This page took 0.033115 seconds and 4 git commands to generate.