summaryrefslogtreecommitdiffstats
path: root/tools/lib/h5tools_utils.c
diff options
context:
space:
mode:
authorScott Wegner <swegner@hdfgroup.org>2008-06-09 17:31:22 (GMT)
committerScott Wegner <swegner@hdfgroup.org>2008-06-09 17:31:22 (GMT)
commit6df2bbd6e93c8731ac5c7a39f32090487b9061f5 (patch)
treefdaced2c64e3c5f2428f6ef02022f48f37989905 /tools/lib/h5tools_utils.c
parent0304c9a5fa3aca4331505e36c939f0347acf0132 (diff)
downloadhdf5-6df2bbd6e93c8731ac5c7a39f32090487b9061f5.zip
hdf5-6df2bbd6e93c8731ac5c7a39f32090487b9061f5.tar.gz
hdf5-6df2bbd6e93c8731ac5c7a39f32090487b9061f5.tar.bz2
[svn-r15181] Purpose: _WIN32 macro cleanup
Description: As part of our Windows cleanup, we try to remove windows-specific tweaks in the source code. There are many instances where Windows code is introduces via ifdef's. We re-evaluate whether they are still required, and found that many of them are not. Others we change to "feature"-specific code, rather than Windows-specific. Tested: VS2005 on WinXP VS.NET on WinXP h5committest (kagisopp, smirom, linew)
Diffstat (limited to 'tools/lib/h5tools_utils.c')
-rw-r--r--tools/lib/h5tools_utils.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/tools/lib/h5tools_utils.c b/tools/lib/h5tools_utils.c
index 512a3fb..0be3a91 100644
--- a/tools/lib/h5tools_utils.c
+++ b/tools/lib/h5tools_utils.c
@@ -99,13 +99,8 @@ warn_msg(const char *progname, const char *fmt, ...)
va_start(ap, fmt);
HDfflush(stdout);
-#ifdef _WIN32
- HDfprintf(stdout, "%s warning: ", progname);
- HDvfprintf(stdout, fmt, ap);
-#else /* _WIN32 */
HDfprintf(stderr, "%s warning: ", progname);
HDvfprintf(stderr, fmt, ap);
-#endif /* _WIN32 */
va_end(ap);
}