]> ruderich.org/simon Gitweb - wall-notify/wall-notify.git/commitdiff
remove superfluous braces in comment master
authorSimon Ruderich <simon@ruderich.org>
Tue, 22 Sep 2015 23:58:40 +0000 (01:58 +0200)
committerSimon Ruderich <simon@ruderich.org>
Tue, 22 Sep 2015 23:58:40 +0000 (01:58 +0200)
src/wall-notify.c

index 0e77e97ecce2d8638fd91ec27cc83a88d6cec8ba..e0d556db1386387e567bcb7967cb0fe9f1e213fb 100644 (file)
@@ -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