1
0
Fork 0

GUI: fixed runtime error

This commit is contained in:
mrexodia 2016-10-02 18:02:19 +02:00
parent 802c08240b
commit 888276918a
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ inline QString ToByteString(unsigned char Value)
inline QString ToWordString(unsigned short Value)
{
char temp[4];
char temp[8];
sprintf_s(temp, "%04X", Value);
return QString(temp);
}