From abfec2ee6e207d575172c47400ff6c242e2b0644 Mon Sep 17 00:00:00 2001 From: Ed Hartnett Date: Sun, 28 Jul 2019 15:48:25 -0600 Subject: [PATCH] adding missing semicolon --- libhdf5/hdf5create.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libhdf5/hdf5create.c b/libhdf5/hdf5create.c index 8ee88cb8f..9c1c8e460 100644 --- a/libhdf5/hdf5create.c +++ b/libhdf5/hdf5create.c @@ -294,7 +294,7 @@ NC4_create(const char* path, int cmode, size_t initialsz, int basepe, /* Check the cmode for validity. Checking parallel against * NC_DISKLESS already done in NC_create(). */ if((cmode & ILLEGAL_CREATE_FLAGS) != 0) - return NC_EINVAL + return NC_EINVAL; /* Create the netCDF-4/HDF5 file. */ res = nc4_create_file(path, cmode, initialsz, parameters, nc_file);