diff options
author | Gerd Heber <gheber@hdfgroup.org> | 2020-11-18 15:06:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-18 15:06:01 (GMT) |
commit | 0a06b9a8690f6c968c036142fd1b1a83cbcd7617 (patch) | |
tree | 73e4b095ef9b1ea5f3ec9ad1a450bc193f8c75f8 /src/H5system.c | |
parent | a50d211755cb272b2e468144e7d892a4c90813c4 (diff) | |
download | hdf5-0a06b9a8690f6c968c036142fd1b1a83cbcd7617.zip hdf5-0a06b9a8690f6c968c036142fd1b1a83cbcd7617.tar.gz hdf5-0a06b9a8690f6c968c036142fd1b1a83cbcd7617.tar.bz2 |
First cut of the H5 public API documentation. (#80)
* First cut of the H5 public API documentation.
* Added H5Z "bonus track."
* Applied Quincey's patch.
* Added the missing patches from Quincey's original patch.
* H5PL (complete) and basic H5VL API documentation.
* Added H5I API docs.
* Added H5L API docs.
* First installment from Elena's H5T batch.
* Second installment of Elena's H5T batch.
* Final installment of Elena's H5T batch.
Diffstat (limited to 'src/H5system.c')
-rw-r--r-- | src/H5system.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5system.c b/src/H5system.c index b2a2668..a817b7c 100644 --- a/src/H5system.c +++ b/src/H5system.c @@ -25,6 +25,7 @@ /****************/ /* Module Setup */ /****************/ +#include "H5module.h" /* This source code file is part of the H5 module */ /***********/ /* Headers */ @@ -347,7 +348,7 @@ H5_make_time(struct tm *tm) */ long timezone = 0; #endif /* defined(H5_HAVE_VISUAL_STUDIO) && (_MSC_VER >= 1900) */ - time_t ret_value; /* Return value */ + time_t ret_value = 0; /* Return value */ FUNC_ENTER_NOAPI_NOINIT |