diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-08-25 15:36:23 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-08-25 15:36:23 (GMT) |
commit | bf54eff7ffae82e36f803f8cc39bd0623c8696ef (patch) | |
tree | e749710b56e7552c446cc56237af5b4d1f057e3f /src/H5F.c | |
parent | 581fe7cf75eb95f60e05a9f374be8eb038f6a343 (diff) | |
download | hdf5-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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"); |