From a2b963b2d9730bf7f9ef9489a49ef74094d80bec Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Tue, 31 Oct 2017 12:50:53 -0500 Subject: [PATCH] Fix bug in fast-convert from int64 to enum Discovered on Solaris-sparc (big-endian). --- src/ioc/db/dbFastLinkConv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ioc/db/dbFastLinkConv.c b/src/ioc/db/dbFastLinkConv.c index 00a37f710..98c98edc1 100644 --- a/src/ioc/db/dbFastLinkConv.c +++ b/src/ioc/db/dbFastLinkConv.c @@ -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); }