Browse Source

Indentation.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
Andrew Borodin 8 years ago
parent
commit
f4eb2c47c9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/tty/tty-ncurses.c

+ 1 - 1
lib/tty/tty-ncurses.c

@@ -198,7 +198,7 @@ tty_init (gboolean mouse_enable, gboolean is_xterm)
 
     tcgetattr (STDIN_FILENO, &mode);
     /* use Ctrl-g to generate SIGINT */
-    mode.c_cc[VINTR] = CTRL ('g');  /* ^g */
+    mode.c_cc[VINTR] = CTRL ('g');      /* ^g */
     /* disable SIGQUIT to allow use Ctrl-\ key */
     mode.c_cc[VQUIT] = NULL_VALUE;
     tcsetattr (STDIN_FILENO, TCSANOW, &mode);