Bose: Fix unitialized compiler warning

This commit is contained in:
Michael Zanetti 2022-11-02 21:05:37 +01:00
parent f111b77bc0
commit ffef58c313

View File

@ -127,7 +127,7 @@ struct InfoObject {
}; };
struct ArtObject { struct ArtObject {
ART_STATUS artStatus; ART_STATUS artStatus = ART_STATUS_INVALID;
QString url; QString url;
}; };