changeset 79486:c2586e2e84d3

(list_processes_1): Fix indentation level of the command column.
author Andreas Schwab <schwab@suse.de>
date Mon, 26 Nov 2007 09:56:15 +0000
parents 1f257b94fe83
children 9d48040f06e1
files src/process.c
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/process.c	Sat Nov 24 15:40:39 2007 +0000
+++ b/src/process.c	Mon Nov 26 09:56:15 2007 +0000
@@ -1370,8 +1370,10 @@
   if (w_tty)
     {
       XSETFASTINT (i_tty, XFASTINT (i_buffer) + w_buffer + 1);
-      XSETFASTINT (i_command, XFASTINT (i_buffer) + w_tty + 1);
-    } else {
+      XSETFASTINT (i_command, XFASTINT (i_tty) + w_tty + 1);
+    }
+  else
+    {
       i_tty = Qnil;
       XSETFASTINT (i_command, XFASTINT (i_buffer) + w_buffer + 1);
     }