diff options
author | Will Dietz <w@wdtz.org> | 2018-04-18 16:17:44 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-04-19 12:54:58 -0400 |
commit | 3f3cc3e99558501318e2f16ff03bbd68ce5a5e95 (patch) | |
tree | 2d57b1871c22d6b509b2bcd21ce10e3a44d7c518 | |
parent | 8c2943f057c5f69cc6423c360b626bc1ad493230 (diff) | |
download | musl-3f3cc3e99558501318e2f16ff03bbd68ce5a5e95.tar.gz |
setvbuf: minor comment typo fix
-rw-r--r-- | src/stdio/setvbuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdio/setvbuf.c b/src/stdio/setvbuf.c index 0a0c139f..b6b9b018 100644 --- a/src/stdio/setvbuf.c +++ b/src/stdio/setvbuf.c @@ -1,7 +1,7 @@ #include "stdio_impl.h" /* The behavior of this function is undefined except when it is the first - * operation on the stream, so the presence or absence of lockign is not + * operation on the stream, so the presence or absence of locking is not * observable in a program whose behavior is defined. Thus no locking is * performed here. No allocation of buffers is performed, but a buffer * provided by the caller is used as long as it is suitably sized. */ |