summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-10-12 20:44:45 +0300
committerTor Lillqvist <tml@collabora.com>2013-10-12 20:44:45 +0300
commit22481c65ff2019dcfb03d9fe58e6ad2574b759fd (patch)
tree85ef8314d755f01e8072bc8b1763b72c12beca0b
parent55ed54021b9c59d3e642ca93fcf4412fe2951102 (diff)
Avoid git grep match for "UNX" in comment
Change-Id: Ie8dde0810a3953a03ef6cfdcfaa24445ee45de5a
-rw-r--r--include/tools/stream.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tools/stream.hxx b/include/tools/stream.hxx
index b051e9a7e7a0..1bc3f2a238a6 100644
--- a/include/tools/stream.hxx
+++ b/include/tools/stream.hxx
@@ -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)