From: Simon Ruderich Date: Tue, 22 Sep 2015 23:58:40 +0000 (+0200) Subject: remove superfluous braces in comment X-Git-Url: https://ruderich.org/simon/gitweb/?p=wall-notify%2Fwall-notify.git;a=commitdiff_plain remove superfluous braces in comment --- diff --git a/src/wall-notify.c b/src/wall-notify.c index 0e77e97..e0d556d 100644 --- a/src/wall-notify.c +++ b/src/wall-notify.c @@ -169,11 +169,11 @@ static int set_utmpx(short type, int ptm) { static int login(int ptm) { #if defined(USE_UTEMPTER) int result = utempter_add_record(ptm, NULL); - /* Exit value of utempter_*() is not correct on all systems, e.g. - * FreeBSD() always returns 0. Checking the utmpx database manually is - * difficult because we don't know the exact values for ut_id and ut_line, - * therefore we only check the return value on systems known to return a - * useful value. */ + /* Exit value of utempter_*() is not correct on all systems, e.g. FreeBSD + * always returns 0. Checking the utmpx database manually is difficult + * because we don't know the exact values for ut_id and ut_line, therefore + * we only check the return value on systems known to return a useful + * value. */ # ifndef __linux result = 1; # endif