This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Fix comment typos in libio/stdio.h


Hello,

I have not completed FSF copyright assignment and I hope this is not a problem
due the size of my patch (less than 15 lines).

This is my very first contribution to glibc and any feedback is welcome.

Thanks.
--8<--
2013-05-22  Murilo Opsfelder Araujo  <mopsfelder@gmail.com>

	* libio/stdio.h: Fix comment typos of TMP_MAX and FOPEN_MAX.
---
 libio/stdio.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libio/stdio.h b/libio/stdio.h
index 754301f..abd9673 100644
--- a/libio/stdio.h
+++ b/libio/stdio.h
@@ -154,12 +154,12 @@ typedef _G_fpos64_t fpos64_t;

 /* Get the values:
    L_tmpnam	How long an array of chars must be to be passed to `tmpnam'.
-   TMP_MAX	The minimum number of unique filenames generated by tmpnam
+   TMP_MAX	The maximum number of unique filenames generated by tmpnam
 		(and tempnam when it uses tmpnam's name space),
 		or tempnam (the two are separate).
    L_ctermid	How long an array to pass to `ctermid'.
    L_cuserid	How long an array to pass to `cuserid'.
-   FOPEN_MAX	Minimum number of files that can be open at once.
+   FOPEN_MAX	Maximum number of files that can be open at once.
    FILENAME_MAX	Maximum length of a filename.  */
 #include <bits/stdio_lim.h>

--
1.8.1.4


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]