diff options
author | Max Kellermann <max@duempel.org> | 2015-03-23 22:35:56 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-03-23 22:35:56 +0100 |
commit | 6dc3097998e69ec97aff68b9ef80ac9eb8dd76d8 (patch) | |
tree | aacf5481e62b22d3b573337a145c1b18b07f7ced /src | |
parent | cd352716981310c37ae59d9b09f353b621318a3b (diff) | |
download | mpd-6dc3097998e69ec97aff68b9ef80ac9eb8dd76d8.tar.gz mpd-6dc3097998e69ec97aff68b9ef80ac9eb8dd76d8.tar.xz mpd-6dc3097998e69ec97aff68b9ef80ac9eb8dd76d8.zip |
fs/io/FileOutputStream: make "path" const
Diffstat (limited to 'src')
-rw-r--r-- | src/fs/io/FileOutputStream.hxx | 2 |
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; |