diff --git a/Test/test_cmor_append_associated.c b/Test/test_cmor_append_associated.c index d8dfe7c5..f574fe09 100644 --- a/Test/test_cmor_append_associated.c +++ b/Test/test_cmor_append_associated.c @@ -98,8 +98,8 @@ void loopRoutine(char *times, char *returnvalue) read_time(i, &Time[i-k*ntimes], &bnds_time[2 * (i-k*ntimes)]); if(times) - ierr = cmor_axis(&axes_ids[0], "time", "months since 1980", NULL, NULL, 'd', - NULL, NULL, NULL); + ierr = cmor_axis(&axes_ids[0], "time", "months since 1980", 0, NULL, 'd', + NULL, 0, NULL); else ierr = cmor_axis(&axes_ids[0], "time", "months since 1980", ntimes, &Time[0], 'd', &bnds_time[0], 2, NULL); diff --git a/Test/test_cmor_append_associated_point.c b/Test/test_cmor_append_associated_point.c index 0d3b042e..289b8dcb 100644 --- a/Test/test_cmor_append_associated_point.c +++ b/Test/test_cmor_append_associated_point.c @@ -98,7 +98,7 @@ void loopRoutine(char *times, char *returnvalue) read_time(i, &Time[i-k*ntimes], &bnds_time[2 * (i-k*ntimes)]); if(times) - ierr = cmor_axis(&axes_ids[0], "time1", "months since 1980", NULL, NULL, 'd', + ierr = cmor_axis(&axes_ids[0], "time1", "months since 1980", 0, NULL, 'd', NULL, 0, NULL); else ierr = cmor_axis(&axes_ids[0], "time1", "months since 1980", ntimes, &Time[0], 'd', diff --git a/Test/test_cmor_depth_coord_half.c b/Test/test_cmor_depth_coord_half.c index b135b4ec..8a12ad2d 100644 --- a/Test/test_cmor_depth_coord_half.c +++ b/Test/test_cmor_depth_coord_half.c @@ -49,7 +49,7 @@ int main() ierr |= cmor_variable(&myvars[0], "zhalfo", "m", 4, axes_ids, 'd', NULL, NULL, "", "zhalfo", "no history", "no future"); - ierr |= cmor_write(myvars[0], zhalfo_data, 'd', NULL, NULL, NULL, NULL, NULL); + ierr |= cmor_write(myvars[0], zhalfo_data, 'd', NULL, 0, NULL, NULL, NULL); ierr |= cmor_close_variable(myvars[0], returnvalue, NULL); diff --git a/Test/test_cmor_singleton_and_generic.c b/Test/test_cmor_singleton_and_generic.c index 53df05ad..f2224c4c 100644 --- a/Test/test_cmor_singleton_and_generic.c +++ b/Test/test_cmor_singleton_and_generic.c @@ -111,7 +111,7 @@ int main() double lambda550[1] = {550.}; ierr |= cmor_axis(&axes_ids[4], "lambda550nm", "nm", 1, lambda550, 'd', - NULL, NULL, ""); + NULL, 0, ""); double p0[1] = {101325.0}; double a_val[4] = {0, 0, 36.0317993164062, 171.845031738281};