Ian Jauslin
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/init.c')
-rw-r--r--src/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/init.c b/src/init.c
index e4b6065..cce97d2 100644
--- a/src/init.c
+++ b/src/init.c
@@ -89,7 +89,7 @@ int init_file_txt (
int K2,
FILE* initfile
){
- read_u(u0, K1, K2, initfile);
+ read_vec(u0, K1, K2, initfile);
return 0;
}
// binary input
@@ -99,6 +99,6 @@ int init_file_bin (
int K2,
FILE* initfile
){
- read_u_bin(u0, K1, K2, initfile);
+ read_vec_bin(u0, K1, K2, initfile);
return 0;
}