diff options
author | Max Kellermann <max@duempel.org> | 2013-01-29 21:11:04 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-29 21:11:04 +0100 |
commit | a42f9fd4e2ccb164c0634571da9903e6a2aa507a (patch) | |
tree | 104cd2ac6598f1529f03e18c8f77135998b1a55d /src/ArchivePlugin.cxx | |
parent | e66005563efb24cdeb0c034a680f6a5556265c09 (diff) | |
download | mpd-a42f9fd4e2ccb164c0634571da9903e6a2aa507a.tar.gz mpd-a42f9fd4e2ccb164c0634571da9903e6a2aa507a.tar.xz mpd-a42f9fd4e2ccb164c0634571da9903e6a2aa507a.zip |
ArchivePlugin: scan_next() returns const string
Diffstat (limited to '')
-rw-r--r-- | src/ArchivePlugin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ArchivePlugin.cxx b/src/ArchivePlugin.cxx index 42c90eec8..55721efc3 100644 --- a/src/ArchivePlugin.cxx +++ b/src/ArchivePlugin.cxx @@ -70,7 +70,7 @@ archive_file_scan_reset(struct archive_file *file) file->plugin->scan_reset(file); } -char * +const char * archive_file_scan_next(struct archive_file *file) { assert(file != NULL); |