workaround for 68k cross compiler bug

This commit is contained in:
Jeff Hill
2004-01-22 17:55:39 +00:00
parent 59a2bedda5
commit a624ca3bdd

View File

@@ -200,9 +200,8 @@ int epicsShareAPI ca_context_create (
return ECA_NORMAL;
}
bool enablePreemptiveCallback =
premptiveCallbackSelect == ca_enable_preemptive_callback;
pcac = new ca_client_context ( enablePreemptiveCallback );
pcac = new ca_client_context (
premptiveCallbackSelect == ca_enable_preemptive_callback );
if ( ! pcac ) {
return ECA_ALLOCMEM;
}