changeset 86450:e39319cd62d8

(list_processes_1): Fix indentation level of the command column.
author Andreas Schwab <schwab@suse.de>
date Mon, 26 Nov 2007 09:56:47 +0000
parents 40827ab5ae6a
children 9279479159b0
files src/process.c
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/process.c	Mon Nov 26 09:56:30 2007 +0000
+++ b/src/process.c	Mon Nov 26 09:56:47 2007 +0000
@@ -1375,8 +1375,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);
     }