aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@94b1c47f-dcfd-45ef-a468-0854c0e9e350>2004-05-05 16:04:21 +0000
committertradke <tradke@94b1c47f-dcfd-45ef-a468-0854c0e9e350>2004-05-05 16:04:21 +0000
commitfc3d30df8ead8f132399e4248b9bdd9bf0d96e1a (patch)
tree938e4f432c7d014896fdfd03033ffd76f34ad881
parentf597612f87158555e967475ab9372af510c40a6c (diff)
Fixed declaration of Hyperslab_GetList() which was mismatching with its
prototype in PUGHSlab. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOASCII/trunk@170 94b1c47f-dcfd-45ef-a468-0854c0e9e350
-rw-r--r--interface.ccl6
1 files changed, 3 insertions, 3 deletions
diff --git a/interface.ccl b/interface.ccl
index b356471..82a36c3 100644
--- a/interface.ccl
+++ b/interface.ccl
@@ -14,7 +14,7 @@ CCTK_INT FUNCTION \
CCTK_INT ARRAY IN vindices, \
CCTK_INT ARRAY IN timelevels, \
CCTK_INT ARRAY IN hdatatypes, \
- CCTK_POINTER ARRAY OUT hdata, \
+ CCTK_POINTER ARRAY IN hdata, \
CCTK_INT ARRAY OUT retvals)
CCTK_INT FUNCTION \
@@ -32,8 +32,8 @@ CCTK_INT FUNCTION \
CCTK_INT IN dst_stride,\
CCTK_INT IN src_type, \
CCTK_INT IN dst_type, \
- CCTK_POINTER IN src, \
- CCTK_POINTER OUT dst), \
+ CCTK_POINTER_TO_CONST IN from, \
+ CCTK_POINTER IN to), \
CCTK_INT ARRAY OUT hsize)
CCTK_INT FUNCTION Hyperslab_FreeMapping (CCTK_INT IN mapping_handle)