1999-01-19 Fernando Nasser <fnasser@totem.to.cygnus.com>
[deliverable/binutils-gdb.git] / gdb / utils.c
index e03245f7af9f479995d260bf89a7b4b47c35a995..fa2cb22d1e01b6a1a380d9352019e2561c753948 100644 (file)
@@ -982,14 +982,17 @@ print_spaces (n, file)
      register int n;
      register GDB_FILE *file;
 {
-  if (file->ts_streamtype == astring) {
-    gdb_file_adjust_strbuf (n, file);
-    while (n-- > 0) 
-     strcat(file->ts_strbuf, ' ');
-  } else {
-     while (n-- > 0)
-       fputc (' ', file->ts_filestream);
-  }
+  if (file->ts_streamtype == astring)
+    {
+      gdb_file_adjust_strbuf (n, file);
+      while (n-- > 0) 
+       strcat(file->ts_strbuf, " ");
+    }
+  else
+    {
+      while (n-- > 0)
+       fputc (' ', file->ts_filestream);
+    }
 }
 
 /* Print a host address.  */
This page took 0.023252 seconds and 4 git commands to generate.