Skip to content

Commit

Permalink
Fix another test typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Lnaden committed Jan 2, 2018
1 parent 6a24ca4 commit 978e83d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nc_test4/tst_chunks.c
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ main(int argc, char **argv)

/* Create a netcdf4 file with 1 dimension. */
if (nc_create(FILE_NAME, NC_NETCDF4, &ncid)) ERR;
if (nc_def_dim(ncid, unlimdimid, NC_UNLIMITED, &unlim_dimid)) ERR;
if (nc_def_dim(ncid, D_UNLIM, NC_UNLIMITED, &unlim_dimid)) ERR;

/* Add one var with one chunksize */
if (nc_def_var(ncid, V_UNLIM_ONE, NC_USHORT, NDIMS1, &unlim_dimid, &first_unlim_varid)) ERR;
Expand Down

0 comments on commit 978e83d

Please sign in to comment.