diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-08-04 22:02:32 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-08-04 22:02:32 (GMT) |
commit | 3775ed521d75b9041104417c8c70e84ace674c40 (patch) | |
tree | 250cf460c41cafa2b8c3971084990f70cc8c7dd9 /test | |
parent | b1b1b74b383d84e024e3c76ddb79ea2abdf4eebe (diff) | |
download | hdf5-3775ed521d75b9041104417c8c70e84ace674c40.zip hdf5-3775ed521d75b9041104417c8c70e84ace674c40.tar.gz hdf5-3775ed521d75b9041104417c8c70e84ace674c40.tar.bz2 |
[svn-r2466] Added return statement to the main function to prevent some compiler
warnings. It's not a meaningful addition, since it happens right after an
_exit() statement.
Diffstat (limited to 'test')
-rw-r--r-- | test/flush1.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/flush1.c b/test/flush1.c index bc51375..9ab18f4 100644 --- a/test/flush1.c +++ b/test/flush1.c @@ -89,8 +89,9 @@ main(void) fflush(stdout); fflush(stderr); _exit(0); + return 0; error: _exit(1); + return 1; } - |