clang-format correction

This commit is contained in:
diracsbracket 2021-04-26 11:40:09 -04:00 committed by John Maguire
parent b7a995d223
commit 444f1e2e69
1 changed files with 2 additions and 2 deletions

View File

@ -213,8 +213,8 @@ SongLoader::Result SongLoader::LoadLocal(const QString& filename) {
SongLoader::Result SongLoader::LoadLocalAsync(const QString& filename) {
// First check to see if it's a directory - if so we will load all the songs
// inside right away.
QFileInfo info = QFileInfo(filename);
if (info.isDir()) {
QFileInfo info = QFileInfo(filename);
if (info.isDir()) {
LoadLocalDirectory(filename);
return Success;
}