Skip to content

Commit

Permalink
Jpointer corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
thomvet committed Nov 20, 2024
1 parent c55b38d commit 86a5d7a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/client_callmethod.jl
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ else #we are on Apple Silicon and can't use a closure in @cfunction, have to do
end
for i in 1:outputSize
j = JUA_Variant(output_julia[i])
UA_Variant_copy(Jpointer(j), arr_output[i])
UA_Variant_copy(Open62541.Jpointer(j), arr_output[i])
end
return UA_STATUSCODE_GOOD
end
Expand All @@ -78,7 +78,7 @@ else #we are on Apple Silicon and can't use a closure in @cfunction, have to do
end
for i in 1:outputSize
j = JUA_Variant(output_julia[i])
UA_Variant_copy(Jpointer(j), arr_output[i])
UA_Variant_copy(Open62541.Jpointer(j), arr_output[i])
end
return UA_STATUSCODE_GOOD
end
Expand All @@ -93,7 +93,7 @@ else #we are on Apple Silicon and can't use a closure in @cfunction, have to do
end
for i in 1:outputSize
j = JUA_Variant(output_julia[i])
UA_Variant_copy(Jpointer(j), arr_output[i])
UA_Variant_copy(Open62541.Jpointer(j), arr_output[i])
end
return UA_STATUSCODE_GOOD
end
Expand All @@ -108,7 +108,7 @@ else #we are on Apple Silicon and can't use a closure in @cfunction, have to do
end
for i in 1:outputSize
j = JUA_Variant(output_julia[i])
UA_Variant_copy(Jpointer(j), arr_output[i])
UA_Variant_copy(Open62541.Jpointer(j), arr_output[i])
end
return UA_STATUSCODE_GOOD
end
Expand All @@ -123,7 +123,7 @@ else #we are on Apple Silicon and can't use a closure in @cfunction, have to do
end
for i in 1:outputSize
j = JUA_Variant(output_julia[i])
UA_Variant_copy(Jpointer(j), arr_output[i])
UA_Variant_copy(Open62541.Jpointer(j), arr_output[i])
end
return UA_STATUSCODE_GOOD
end
Expand Down

0 comments on commit 86a5d7a

Please sign in to comment.