From 0adedf1eeabf0bdb060e1bb4cfe8d5a8d3fd935d Mon Sep 17 00:00:00 2001
From: Francois Fleuret <francois@fleuret.org>
Date: Tue, 27 Sep 2011 15:49:09 +0200
Subject: [PATCH] Cosmetics.

---
 selector.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/selector.c b/selector.c
index 4746d01..2b51cf6 100644
--- a/selector.c
+++ b/selector.c
@@ -76,7 +76,7 @@ int attr_modeline, attr_focus_line, attr_error;
 
 void *safe_malloc(size_t n) {
   void *p = malloc(n);
-  if (!p && n != 0) {
+  if(!p && n != 0) {
     fprintf(stderr,
             "selector: can not allocate memory: %s\n", strerror(errno));
     exit(EXIT_FAILURE);
@@ -1222,7 +1222,7 @@ int main(int argc, char **argv) {
 
   /* Here we come back to standard display */
 
-  if((key == KEY_ENTER || key == '\n')) {
+  if(key == KEY_ENTER || key == '\n') {
 
     char *t;
 
-- 
2.39.5