From bf54eff7ffae82e36f803f8cc39bd0623c8696ef Mon Sep 17 00:00:00 2001 From: Patrick Lu Date: Wed, 25 Aug 1999 10:36:23 -0500 Subject: [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 --- src/H5F.c | 4 ++-- 1 file 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"); -- cgit v0.12