diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2003-11-10 21:32:01 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2003-11-10 21:32:01 (GMT) |
commit | 54f35626c14dd7f0bcd72bbe03d4e14bb3fc6bfc (patch) | |
tree | a09b333d366e93ef1d9546763dd548d10b5022c2 /tools/h5repack/h5repack_main.c | |
parent | b00b2d31e70f76b0992df896454e16b8a2266d64 (diff) | |
download | hdf5-54f35626c14dd7f0bcd72bbe03d4e14bb3fc6bfc.zip hdf5-54f35626c14dd7f0bcd72bbe03d4e14bb3fc6bfc.tar.gz hdf5-54f35626c14dd7f0bcd72bbe03d4e14bb3fc6bfc.tar.bz2 |
[svn-r7834] Purpose:
code clean
Description:
removed compiler warnings on IRIX
Solution:
Platforms tested:
linux
solaris 2.7
IRIX
Misc. update:
Diffstat (limited to 'tools/h5repack/h5repack_main.c')
-rw-r--r-- | tools/h5repack/h5repack_main.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/h5repack/h5repack_main.c b/tools/h5repack/h5repack_main.c index 39f18f8..40f6f48 100644 --- a/tools/h5repack/h5repack_main.c +++ b/tools/h5repack/h5repack_main.c @@ -17,7 +17,7 @@ #include <stdlib.h> -static void usage(); +static void usage(void); /* @@ -108,9 +108,10 @@ int main(int argc, char **argv) */ static -void usage() +void usage(void) { + exit(1); } |