summaryrefslogtreecommitdiffstats
path: root/hl/tools/gif2h5/gif2hdf.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2009-12-25 12:32:05 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2009-12-25 12:32:05 (GMT)
commita4027247df26eb54e1d8f8df71bcc01c64057b3b (patch)
treee13bc6672ea4797e1f3757c33c179e12ba8bb525 /hl/tools/gif2h5/gif2hdf.c
parent2fd8480ec7d2521075c8cda5f68643d6708e80df (diff)
downloadhdf5-a4027247df26eb54e1d8f8df71bcc01c64057b3b.zip
hdf5-a4027247df26eb54e1d8f8df71bcc01c64057b3b.tar.gz
hdf5-a4027247df26eb54e1d8f8df71bcc01c64057b3b.tar.bz2
[svn-r18050] Bug fix: 1192
Description: Some exit code (sometimes return code in Main) to follow the HDF5 standards. Tested: H5committested plus serial test in Jam.
Diffstat (limited to 'hl/tools/gif2h5/gif2hdf.c')
-rw-r--r--hl/tools/gif2h5/gif2hdf.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/hl/tools/gif2h5/gif2hdf.c b/hl/tools/gif2h5/gif2hdf.c
index c7e4ab6..39c71cf 100644
--- a/hl/tools/gif2h5/gif2hdf.c
+++ b/hl/tools/gif2h5/gif2hdf.c
@@ -60,7 +60,7 @@ main(int argv , char *argc[])
printf("Usage: gif2h5 <GIFFILE> <HDFFILE>\n");
fprintf(stdout, " gif2h5 -V \n");
fprintf(stdout, " Print HDF5 library version and exit\n");
- return(-1);
+ exit(EXIT_FAILURE);
}
GIFFileName = argc[1];
@@ -68,7 +68,7 @@ main(int argv , char *argc[])
if (!(fpGif = fopen(GIFFileName,"rb"))) {
printf("Unable to open GIF file for reading.\n");
- exit(-1);
+ exit(EXIT_FAILURE);
}
/* Get the whole file into memory. Mem's much faster than I/O */
@@ -81,12 +81,12 @@ main(int argv , char *argc[])
if (!(MemGif = StartPos = (BYTE *)malloc((size_t)filesize))) {
printf("Out of memory");
- exit (-1);
+ exit(EXIT_FAILURE);
}
if (fread(MemGif,(size_t)filesize,1,fpGif) != 1) {
printf("Corrupted Input File");
- exit(-1);
+ exit(EXIT_FAILURE);
}
fseek(fpGif,0L,0);
@@ -99,7 +99,7 @@ main(int argv , char *argc[])
if (ferror(fpGif)) {
printf("File Stream Error\n\n");
- exit(-1);
+ exit(EXIT_FAILURE);
}
fclose(fpGif);
@@ -157,5 +157,5 @@ main(int argv , char *argc[])
}
- return 0;
+ return EXIT_SUCCESS;
}