bugfix in devscalcoutStream.c

This commit is contained in:
2018-06-08 14:05:05 +02:00
parent 136e2ce779
commit b91f087736

View File

@ -53,7 +53,7 @@ static long readData(dbCommon *record, format_t *format)
case DBF_STRING:
{
if ((streamScanfN(record, format,
sco->sval, sizeof(sco->val)) == ERROR) return ERROR;
sco->sval, sizeof(sco->val)) == ERROR)) return ERROR;
return OK;
}
}