mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-18 15:55:12 +08:00
More cleanups from clang warnings.
This commit is contained in:
parent
0687dfe5a2
commit
2e029a3058
@ -1132,7 +1132,7 @@ copy_data(int igrp, int ogrp)
|
||||
|
||||
/* Count total number of dimensions in ncid and all its descendant subgroups */
|
||||
int
|
||||
count_dims(ncid) {
|
||||
count_dims(int ncid) {
|
||||
int numgrps;
|
||||
int ndims;
|
||||
NC_CHECK(nc_inq_ndims(ncid, &ndims));
|
||||
@ -1727,4 +1727,4 @@ main(int argc, char**argv)
|
||||
exit(EXIT_FAILURE);
|
||||
exit(EXIT_SUCCESS);
|
||||
}
|
||||
END_OF_MAIN();
|
||||
END_OF_MAIN()
|
||||
|
@ -514,7 +514,7 @@ main(
|
||||
|
||||
return 0;
|
||||
}
|
||||
END_OF_MAIN();
|
||||
END_OF_MAIN()
|
||||
|
||||
void
|
||||
init_netcdf(void) /* initialize global counts, flags */
|
||||
|
@ -242,4 +242,4 @@ main(
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
END_OF_MAIN();
|
||||
END_OF_MAIN()
|
||||
|
Loading…
Reference in New Issue
Block a user