summaryrefslogtreecommitdiffstats
path: root/src/H5.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1998-04-24 14:25:17 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1998-04-24 14:25:17 (GMT)
commitf4c99bf7d568a6aa9b0183e29126437348f125b9 (patch)
tree395c767a75f060c70501c1d141d346d6338774f7 /src/H5.c
parent27d6096b64bb0e2df18301b201a62cfb8467a63d (diff)
downloadhdf5-f4c99bf7d568a6aa9b0183e29126437348f125b9.zip
hdf5-f4c99bf7d568a6aa9b0183e29126437348f125b9.tar.gz
hdf5-f4c99bf7d568a6aa9b0183e29126437348f125b9.tar.bz2
[svn-r370] Fixed a couple of compiler warnings.
Diffstat (limited to 'src/H5.c')
-rw-r--r--src/H5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5.c b/src/H5.c
index 22fc7ea..7267461 100644
--- a/src/H5.c
+++ b/src/H5.c
@@ -455,7 +455,7 @@ H5close (void)
int
HDfprintf (FILE *stream, const char *fmt, ...)
{
- int n, nout = 0;
+ int n=0, nout = 0;
int fwidth, prec;
int zerofill;
int leftjust;