Commit 6ca35c14 authored by Marko Mäkelä's avatar Marko Mäkelä

Replace a non-ASCII character in a comment

parent 8d413c32
...@@ -160,7 +160,7 @@ static File loc_open(const char *FileName, int Flags) ...@@ -160,7 +160,7 @@ static File loc_open(const char *FileName, int Flags)
/* /*
We could just use _open() here. but prefer to open in unix-similar way We could just use _open() here. but prefer to open in unix-similar way
just like my_open() does it on Windows. just like my_open() does it on Windows.
This gives atomic multiprocess-safeappends, and possibility to rename This gives atomic multiprocess-safe appends, and possibility to rename
or even delete file while it is open, and CRT lacks this features. or even delete file while it is open, and CRT lacks this features.
*/ */
assert(Flags == (O_APPEND | O_CREAT | O_WRONLY)); assert(Flags == (O_APPEND | O_CREAT | O_WRONLY));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment