Module Name:    src
Committed By:   msaitoh
Date:           Wed Jul  4 07:38:38 UTC 2018

Modified Files:
        src/lib/libc/stdio: fgetln.3

Log Message:
Indent.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/lib/libc/stdio/fgetln.3

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libc/stdio/fgetln.3
diff -u src/lib/libc/stdio/fgetln.3:1.15 src/lib/libc/stdio/fgetln.3:1.16
--- src/lib/libc/stdio/fgetln.3:1.15	Thu Jun 19 14:27:50 2014
+++ src/lib/libc/stdio/fgetln.3	Wed Jul  4 07:38:38 2018
@@ -1,4 +1,4 @@
-.\"	$NetBSD: fgetln.3,v 1.15 2014/06/19 14:27:50 christos Exp $
+.\"	$NetBSD: fgetln.3,v 1.16 2018/07/04 07:38:38 msaitoh Exp $
 .\"
 .\" Copyright (c) 1990, 1991, 1993
 .\"	The Regents of the University of California.  All rights reserved.
@@ -29,7 +29,7 @@
 .\"
 .\"     @(#)fgetln.3	8.3 (Berkeley) 4/19/94
 .\"
-.Dd June 19, 2014
+.Dd July 4, 2018
 .Dt FGETLN 3
 .Os
 .Sh NAME
@@ -138,7 +138,7 @@ temporary buffer:
 		if (len > 0 && buf[len - 1] == '\en')
 			buf[len - 1] = '\e0';
 		else if ((lbuf = strndup(buf, len + 1)) == NULL)
-				err(1, NULL);
+			err(1, NULL);
 		printf("%s\en", lbuf);
 
 		if (lbuf != buf)

Reply via email to