diff options
author | Arno <arno@disconnect.de> | 2018-11-24 17:36:48 +0100 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-11-24 17:36:48 +0100 |
commit | 0d058fda9189f6bf96c70d71ffe1d18ca433e046 (patch) | |
tree | dcb50ff3de2f8a609209f5ecd92d2774f19abe4c /helper.cpp | |
parent | aaf87a077c22cb2491480c8802595edb3e41c944 (diff) | |
download | BeetPlayer-0d058fda9189f6bf96c70d71ffe1d18ca433e046.tar.gz BeetPlayer-0d058fda9189f6bf96c70d71ffe1d18ca433e046.tar.bz2 BeetPlayer-0d058fda9189f6bf96c70d71ffe1d18ca433e046.zip |
Fix some clang warnings
Diffstat (limited to 'helper.cpp')
-rw-r--r-- | helper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -31,7 +31,7 @@ namespace Helper { return a; } - quint64 lengthInSeconds(const QString &file){ + int lengthInSeconds(const QString &file){ TagLib::FileRef f(QString(file).toUtf8()); if(f.isNull()){ return 0; |