summaryrefslogtreecommitdiffstats
path: root/src/H5system.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2015-10-27 13:46:50 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2015-10-27 13:46:50 (GMT)
commit8e179b17aadbf8e011e59224270920878499dfa1 (patch)
treee6535572ac5f5f57885da2af101f5c5404464f5f /src/H5system.c
parentb7310b0d1f1042ed14928b378852e034231f6747 (diff)
downloadhdf5-8e179b17aadbf8e011e59224270920878499dfa1.zip
hdf5-8e179b17aadbf8e011e59224270920878499dfa1.tar.gz
hdf5-8e179b17aadbf8e011e59224270920878499dfa1.tar.bz2
[svn-r28234] Changed a C++-style comment to C-style.
Diffstat (limited to 'src/H5system.c')
-rw-r--r--src/H5system.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/H5system.c b/src/H5system.c
index 098c109..fc01366 100644
--- a/src/H5system.c
+++ b/src/H5system.c
@@ -603,10 +603,12 @@ void HDsrand(unsigned int seed)
long HDget_timezone(void)
{
-#if _MSC_VER >= 1900 // VS 2015
-// In gcc and in Visual Studio prior to VS 2015 'timezone' is a global
-// variable declared in time.h. That variable was deprecated and in VS 2015
-// is removed, with _get_timezone replacing it.
+#if _MSC_VER >= 1900 /* VS 2015 */
+
+ /* In gcc and in Visual Studio prior to VS 2015 'timezone' is a global
+ * variable declared in time.h. That variable was deprecated and in
+ * VS 2015 is removed, with _get_timezone replacing it.
+ */
long timezone = 0;
#define HDget_timezone(V) _get_timezone(V);