Fix bug in fast-convert from int64 to enum

Discovered on Solaris-sparc (big-endian).
This commit is contained in:
Andrew Johnson
2017-10-31 12:50:53 -05:00
parent f76d453a7a
commit a2b963b2d9

View File

@@ -949,7 +949,7 @@ static long cvt_q_d(
/* Convert Int64 to Enumerated */
static long cvt_q_e(
epicsInt32 *from,
epicsInt64 *from,
epicsEnum16 *to,
const dbAddr *paddr)
{ *to=*from; return(0); }