From: Edward Betts Date: Wed, 30 Aug 2017 10:13:31 +0000 (+0100) Subject: Correct spelling mistake in a comment. X-Git-Tag: android-x86-9.0-r1~40 X-Git-Url: http://git.osdn.net/view?p=android-x86%2Fexternal-exfat.git;a=commitdiff_plain;h=1a7c0d0f8e36a1c5b9e51c6aed1b60384d65c779 Correct spelling mistake in a comment. --- diff --git a/libexfat/io.c b/libexfat/io.c index 63ccfdb..318674d 100644 --- a/libexfat/io.c +++ b/libexfat/io.c @@ -84,7 +84,7 @@ struct exfat_dev* exfat_open(const char* spec, enum exfat_mode mode) started with stdin (0), stdout (1) or stderr (2) closed, the system will give us descriptor 0, 1 or 2 later when we open block device, FUSE communication pipe, etc. As a result, functions using stdin, - stdout or stderr will actualy work with a different thing and can + stdout or stderr will actually work with a different thing and can corrupt it. Protect descriptors 0, 1 and 2 from such misuse. */ while (!is_open(STDIN_FILENO) || !is_open(STDOUT_FILENO)