aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--julia/CrystFEL/src/reflists.jl4
1 files changed, 2 insertions, 2 deletions
diff --git a/julia/CrystFEL/src/reflists.jl b/julia/CrystFEL/src/reflists.jl
index d922bdae..ba7311da 100644
--- a/julia/CrystFEL/src/reflists.jl
+++ b/julia/CrystFEL/src/reflists.jl
@@ -230,7 +230,7 @@ function indices(refl::Reflection)
ccall((:get_indices, libcrystfel),
Cint, (Ptr{InternalReflection},Ref{Cint},Ref{Cint},Ref{Cint}),
refl.internalptr, h, k, l)
- (h[], k[], l[])
+ [h[], k[], l[]]
end
@@ -241,7 +241,7 @@ function symmetricindices(refl::Reflection)
ccall((:get_symmetric_indices, libcrystfel),
Cint, (Ptr{InternalReflection},Ref{Cint},Ref{Cint},Ref{Cint}),
refl.internalptr, h, k, l)
- (h[], k[], l[])
+ [h[], k[], l[]]
end