nrpe: update to 4.1.3
[oi-userland.git] / components / library / qt5 / patches / qstandardpaths_unix.cpp.patch
blob8aaab48ae7202003857afcf4b22247291e1e9e0a
1 --- qt-everywhere-src-5.15.3/qtbase/src/corelib/io/qstandardpaths_unix.cpp Thu Mar 18 23:29:29 2021
2 +++ qt-everywhere-src-5.15.3_patched/qtbase/src/corelib/io/qstandardpaths_unix.cpp Tue Mar 22 08:38:50 2022
3 @@ -115,7 +115,7 @@
4 perms |= S_IWOTH;
5 if (permissions & QFile::ExeOther)
6 perms |= S_IXOTH;
7 - return '0' + QByteArray::number(perms, 8);
8 + return '0' + QByteArray::number((uint)perms, 8);
11 static bool checkXdgRuntimeDir(const QString &xdgRuntimeDir)