Skip to content

Commit

Permalink
Merge pull request #3035 from WardF/gh3007.wif
Browse files Browse the repository at this point in the history
Fix in support of #3007
  • Loading branch information
WardF authored Sep 30, 2024
2 parents 0ad7164 + 7a0999e commit b84fcd7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/netcdf.h
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ Use this in mode flags for both nc_create() and nc_open(). */
#define NC_FORMATX_DAP4 (6)
#define NC_FORMATX_UDF0 (8)
#define NC_FORMATX_UDF1 (9)
#define NC_FORMATX_NCZARR (10)
#define NC_FORMATX_NCZARR (10) /**< Added in version 4.8.0 */
#define NC_FORMATX_UNDEFINED (0)

/* To avoid breaking compatibility (such as in the python library),
Expand All @@ -247,6 +247,7 @@ Use this in mode flags for both nc_create() and nc_open(). */
#define NC_FORMAT_DAP2 NC_FORMATX_DAP2 /**< \deprecated As of 4.4.0, use NC_FORMATX_DAP2 */
#define NC_FORMAT_DAP4 NC_FORMATX_DAP4 /**< \deprecated As of 4.4.0, use NC_FORMATX_DAP4 */
#define NC_FORMAT_UNDEFINED NC_FORMATX_UNDEFINED /**< \deprecated As of 4.4.0, use NC_FORMATX_UNDEFINED */
#define NC_FORMATX_ZARR NC_FORMATX_NCZARR /**< \deprecated as of 4.8.0, use NC_FORMATX_NCZARR */

/**@}*/

Expand Down

0 comments on commit b84fcd7

Please sign in to comment.