aboutsummaryrefslogtreecommitdiffstats
path: root/src/fs/io/FileOutputStream.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-03-23 22:35:56 +0100
committerMax Kellermann <max@duempel.org>2015-03-23 22:35:56 +0100
commit6dc3097998e69ec97aff68b9ef80ac9eb8dd76d8 (patch)
treeaacf5481e62b22d3b573337a145c1b18b07f7ced /src/fs/io/FileOutputStream.hxx
parentcd352716981310c37ae59d9b09f353b621318a3b (diff)
downloadmpd-6dc3097998e69ec97aff68b9ef80ac9eb8dd76d8.tar.gz
mpd-6dc3097998e69ec97aff68b9ef80ac9eb8dd76d8.tar.xz
mpd-6dc3097998e69ec97aff68b9ef80ac9eb8dd76d8.zip
fs/io/FileOutputStream: make "path" const
Diffstat (limited to '')
-rw-r--r--src/fs/io/FileOutputStream.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fs/io/FileOutputStream.hxx b/src/fs/io/FileOutputStream.hxx
index ff1ae31a4..7d30d95bb 100644
--- a/src/fs/io/FileOutputStream.hxx
+++ b/src/fs/io/FileOutputStream.hxx
@@ -38,7 +38,7 @@
class Path;
class FileOutputStream final : public OutputStream {
- AllocatedPath path;
+ const AllocatedPath path;
#ifdef WIN32
HANDLE handle;