forgot to declare

This commit is contained in:
DarthArgus
2016-07-24 01:55:15 +00:00
parent a31d7ca48b
commit 0944957824
@@ -284,7 +284,7 @@ bool CMonitorData::processElementsRequest(
{
id = atoi(list[x]);
for (y = 0; y < m_count; y++)
for (int y = 0; y < m_count; y++)
if (m_data[y].id == id)
{
sprintf(tmp, "%d %x|", m_data[y].id, m_data[y].value);
@@ -716,4 +716,4 @@ int unpackByte(char *buffer, int & len, char &value)
value = buffer[0];
len++;
return 1;
}
}