diff --git a/src/devscalcoutStream.c b/src/devscalcoutStream.c index 19e70b9..04e3d16 100644 --- a/src/devscalcoutStream.c +++ b/src/devscalcoutStream.c @@ -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);