diff options
author | Ondřej Bílka <neleai@seznam.cz> | 2014-02-26 23:27:38 +0100 |
---|---|---|
committer | Ondřej Bílka <neleai@seznam.cz> | 2014-02-26 23:27:38 +0100 |
commit | cf822e3c94c2cdec736cdf7b503790b17179afcd (patch) | |
tree | 732a0fadf101d69c52998e830500ff6f20c96a59 /manual/stdio.texi | |
parent | 5b456e9d61c5c7a5744e8c9387498017af2c1e7e (diff) | |
download | glibc-cf822e3c94c2cdec736cdf7b503790b17179afcd.tar.gz glibc-cf822e3c94c2cdec736cdf7b503790b17179afcd.tar.xz glibc-cf822e3c94c2cdec736cdf7b503790b17179afcd.zip |
Fix two spaces after sentence.
Minor formatting fix that was carried by issuing sed -e"s/\. \([A-Z]\)/. \1/" followed by editing result.
Diffstat (limited to 'manual/stdio.texi')
-rw-r--r-- | manual/stdio.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manual/stdio.texi b/manual/stdio.texi index 1161a9a90a..a4364f79f9 100644 --- a/manual/stdio.texi +++ b/manual/stdio.texi @@ -541,7 +541,7 @@ another thread. @deftypefun void funlockfile (FILE *@var{stream}) @safety{@prelim{}@mtsafe{}@assafe{}@acunsafe{@aculock{}}} The @code{funlockfile} function releases the internal locking object of -the stream @var{stream}. The stream must have been locked before by a +the stream @var{stream}. The stream must have been locked before by a call to @code{flockfile} or a successful call of @code{ftrylockfile}. The implicit locking performed by the stream operations do not count. The @code{funlockfile} function does not return an error status and the @@ -2547,7 +2547,7 @@ address of a @code{char *} object, and a successful call to location. The return value is the number of characters allocated for the buffer, or -less than zero if an error occurred. Usually this means that the buffer +less than zero if an error occurred. Usually this means that the buffer could not be allocated. Here is how to use @code{asprintf} to get the same result as the |