summaryrefslogtreecommitdiffstats
path: root/src/H5F.c
diff options
context:
space:
mode:
authorPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-08-25 15:36:23 (GMT)
committerPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-08-25 15:36:23 (GMT)
commitbf54eff7ffae82e36f803f8cc39bd0623c8696ef (patch)
treee749710b56e7552c446cc56237af5b4d1f057e3f /src/H5F.c
parent581fe7cf75eb95f60e05a9f374be8eb038f6a343 (diff)
downloadhdf5-bf54eff7ffae82e36f803f8cc39bd0623c8696ef.zip
hdf5-bf54eff7ffae82e36f803f8cc39bd0623c8696ef.tar.gz
hdf5-bf54eff7ffae82e36f803f8cc39bd0623c8696ef.tar.bz2
[svn-r1595]
not sure if this is what was wanted but in the code where the file drivers are registered the end_registration: label was giving me some trouble with compilation on NT. I think the end_registration label was supposed to be empty and but on NT it didn't like that so i had to put a semi colon after the label. if this is wrong let me know and i'll fix it someother way
Diffstat (limited to 'src/H5F.c')
-rw-r--r--src/H5F.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5F.c b/src/H5F.c
index dcbea3c..ce48d6f 100644
--- a/src/H5F.c
+++ b/src/H5F.c
@@ -207,8 +207,8 @@ H5F_init_interface(void)
#ifdef HAVE_PARALLEL
if ((status=H5FD_MPIO)<0) goto end_registration;
#endif
- end_registration:
- } H5E_END_TRY;
+ end_registration: ;
+ } H5E_END_TRY;
if (status<0) {
HRETURN_ERROR(H5E_FILE, H5E_CANTINIT, FAIL,
"file driver registration failed");