summaryrefslogtreecommitdiffstats
path: root/src/H5win32defs.h
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2013-10-19 23:43:06 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2013-10-19 23:43:06 (GMT)
commite9203a73e2c138991e80d91050e89a656f5a2974 (patch)
tree3a8394cbb6b2aa836f7287f814e0cff105c423d6 /src/H5win32defs.h
parent2aec2ec315ade157d649614e3522fd9fcdbd8e69 (diff)
downloadhdf5-e9203a73e2c138991e80d91050e89a656f5a2974.zip
hdf5-e9203a73e2c138991e80d91050e89a656f5a2974.tar.gz
hdf5-e9203a73e2c138991e80d91050e89a656f5a2974.tar.bz2
[svn-r24333] Added a few volatile keywords to H5detect.c to quiet Visual Studio warnings. Also added a void to a Windows-specific function.
These are both trivial changes that don't affect behavior. Tested on: Visual Studio 2010 on 64-bit Windows 7
Diffstat (limited to 'src/H5win32defs.h')
-rw-r--r--src/H5win32defs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5win32defs.h b/src/H5win32defs.h
index d452925..185e9b4 100644
--- a/src/H5win32defs.h
+++ b/src/H5win32defs.h
@@ -74,7 +74,7 @@ struct timezone {
extern "C" {
#endif /* __cplusplus */
H5_DLL int Wgettimeofday(struct timeval *tv, struct timezone *tz);
- H5_DLL char* Wgetlogin();
+ H5_DLL char* Wgetlogin(void);
H5_DLL int c99_snprintf(char* str, size_t size, const char* format, ...);
H5_DLL int c99_vsnprintf(char* str, size_t size, const char* format, va_list ap);
#ifdef __cplusplus