From: Francois Fleuret Date: Tue, 27 Sep 2011 13:49:09 +0000 (+0200) Subject: Cosmetics. X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=selector.git;a=commitdiff_plain;h=0adedf1eeabf0bdb060e1bb4cfe8d5a8d3fd935d Cosmetics. --- 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;