diff options
author | Max Kellermann <max@duempel.org> | 2013-12-29 16:16:04 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-12-29 16:24:04 +0100 |
commit | 9be82891b01ba2190a97032a2f84b70151bc2358 (patch) | |
tree | 64aca4836fcb7672df94c24a2d5ac216d8ae15fb /src/SongUpdate.cxx | |
parent | c97685fe6cbcd412cb2425e475075ffbabcd072c (diff) |
TagFile: pass reference instead of pointer
Diffstat (limited to 'src/SongUpdate.cxx')
-rw-r--r-- | src/SongUpdate.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SongUpdate.cxx b/src/SongUpdate.cxx index 6e5e37a2b..377b2fb7c 100644 --- a/src/SongUpdate.cxx +++ b/src/SongUpdate.cxx @@ -89,7 +89,7 @@ Song::UpdateFile() TagBuilder tag_builder; if (!tag_file_scan(path_fs, - &full_tag_handler, &tag_builder)) + full_tag_handler, &tag_builder)) return false; if (tag_builder.IsEmpty()) |