Avoid git grep match for "UNX" in comment

Change-Id: Ie8dde0810a3953a03ef6cfdcfaa24445ee45de5a
This commit is contained in:
Tor Lillqvist
2013-10-12 20:44:45 +03:00
parent 55ed54021b
commit 22481c65ff

View File

@@ -48,7 +48,7 @@ typedef sal_uInt16 StreamMode;
// file i/o
#define STREAM_NOCREATE 0x0004 ///< 1 == Dont create file
#define STREAM_TRUNC 0x0008 ///< Truncate _existing_ file to zero length
#define STREAM_COPY_ON_SYMLINK 0x0010 ///< copy-on-write for symlinks (UNX)
#define STREAM_COPY_ON_SYMLINK 0x0010 ///< copy-on-write for symlinks (Unix)
#define STREAM_READWRITEBITS (STREAM_READ | STREAM_WRITE | \
STREAM_NOCREATE | STREAM_TRUNC)