summaryrefslogtreecommitdiffstats
path: root/test/flush1.c
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2000-08-04 22:02:32 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2000-08-04 22:02:32 (GMT)
commit3775ed521d75b9041104417c8c70e84ace674c40 (patch)
tree250cf460c41cafa2b8c3971084990f70cc8c7dd9 /test/flush1.c
parentb1b1b74b383d84e024e3c76ddb79ea2abdf4eebe (diff)
downloadhdf5-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/flush1.c')
-rw-r--r--test/flush1.c3
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;
}
-