We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c338485 commit eda3efcCopy full SHA for eda3efc
src/MPCTestAPI/MPCTestAPIDlg.cpp
@@ -58,8 +58,7 @@ LPCTSTR GetMPCCommandName(MPCAPI_COMMAND nCmd)
58
// Missing a COMMAND from MpcApi.h file
59
static CString strResult;
60
LPCTSTR pszName = nullptr;
61
- pszName = _T("UNKNOWN");
62
- strResult.Format(_T("%s (0x%08X)"), pszName, (unsigned int)nCmd);
+ strResult.Format(_T("%s (0x%08X)"), _T("UNKNOWN"), (unsigned int)nCmd);
63
return strResult;
64
}
65
0 commit comments