[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
This commit is contained in:
Patrick Lu 1999-08-25 10:36:23 -05:00
parent 581fe7cf75
commit bf54eff7ff

View File

@ -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");