Formats the source and updates the gcc warning pragmas

This commit is contained in:
Dana Robinson
2021-03-24 17:39:37 -07:00
parent bdac2ecdbf
commit feb20aac30
1148 changed files with 333582 additions and 325132 deletions

View File

@@ -16,7 +16,6 @@
#include "h5tools_utils.h"
#include "h5test.h"
/* Name of tool */
#define PROGRAMNAME "h5repack_detect_szip"
@@ -39,8 +38,8 @@
*-------------------------------------------------------------------------
*/
int main(void)
int
main(void)
{
h5tools_setprogname(PROGRAMNAME);
h5tools_setstatus(EXIT_SUCCESS);
@@ -51,9 +50,9 @@ int main(void)
#ifdef H5_HAVE_FILTER_SZIP
if (h5tools_can_encode(H5Z_FILTER_SZIP) == 1) {
HDprintf("yes\n");
return(1);
return (1);
}
#endif /* H5_HAVE_FILTER_SZIP */
HDprintf("no\n");
return(0);
return (0);
}