diff options
author | Max Kellermann <max@musicpd.org> | 2018-10-01 08:40:45 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-10-01 08:40:53 +0200 |
commit | 6c40a278090e1621aaa6bc4c7a2cb6746d09e5e1 (patch) | |
tree | 48bca903d395f4f0fb5b10d9bb839f37626ca0ed /src | |
parent | 8736a3533b5a8b3c09b2ab644f1a53c5f8e0f0e6 (diff) |
db/update/ExcludeList: fix variable name in #else block
Diffstat (limited to 'src')
-rw-r--r-- | src/db/update/ExcludeList.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db/update/ExcludeList.cxx b/src/db/update/ExcludeList.cxx index 69f5d8244..b4cb8666b 100644 --- a/src/db/update/ExcludeList.cxx +++ b/src/db/update/ExcludeList.cxx @@ -58,7 +58,7 @@ ExcludeList::Load(InputStreamPtr is) ParseLine(line); #else /* not implemented */ - (void)path_fs; + (void)is; #endif return true; |