Typos on DFB_ULONG

This commit is contained in:
Davide Marcato
2018-09-11 15:01:33 +02:00
committed by GitHub
parent b688f14c22
commit 3d30827798

View File

@ -42,7 +42,7 @@ static long readData(dbCommon *record, format_t *format)
return OK;
}
case DBF_LONG:
case DBF_UONG:
case DBF_ULONG:
case DBF_ENUM:
{
long lval;
@ -72,7 +72,7 @@ static long writeData(dbCommon *record, format_t *format)
return streamPrintf(record, format, sco->oval);
}
case DBF_LONG:
case DBF_UONG:
case DBF_ULONG:
case DBF_ENUM:
{
return streamPrintf(record, format, (long)sco->oval);