Merge PR #2811: Fix MinGW compilation warning

This commit is contained in:
Davide Beatrici 2017-02-04 21:16:40 +01:00 committed by GitHub
commit b817d3fdd7

View File

@ -192,6 +192,8 @@ static const char *processErrorString(QProcess::ProcessError processError) {
return "an error occurred when attempting to write to the process";
case QProcess::ReadError:
return "an error occurred when attempting to read from the process";
case QProcess::UnknownError:
return "an unknown error occurred";
}
return "unknown";