From f747b55895caa21fdf9d318e4220a0dbf59f9e69 Mon Sep 17 00:00:00 2001 From: Albert Cheng Date: Wed, 21 Oct 2009 13:55:45 -0500 Subject: [svn-r17716] Cosmetic change to use exit(EXIT_FAILURE) instead of exit(1). Tested: jam-pp. --- perform/pio_engine.c | 4 ++-- perform/sio_engine.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/perform/pio_engine.c b/perform/pio_engine.c index a70ddc3..27606d0 100644 --- a/perform/pio_engine.c +++ b/perform/pio_engine.c @@ -3028,7 +3028,7 @@ gpfs_invalidate_file_cache(const char *filename) filename); fprintf(stderr, " errno=%d errorOffset=%d\n", errno, inv_cache_hint.hdr.errorOffset); - exit(1); + exit(EXIT_FAILURE); } /* Close the file */ @@ -3037,7 +3037,7 @@ gpfs_invalidate_file_cache(const char *filename) "could not close file '%s' after flushing file cache, ", filename); fprintf(stderr, "errno=%d\n", errno); - exit(1); + exit(EXIT_FAILURE); } } diff --git a/perform/sio_engine.c b/perform/sio_engine.c index adfd708..978ac03 100644 --- a/perform/sio_engine.c +++ b/perform/sio_engine.c @@ -1640,7 +1640,7 @@ gpfs_invalidate_file_cache(const char *filename) filename); fprintf(stderr, " errno=%d errorOffset=%d\n", errno, inv_cache_hint.hdr.errorOffset); - exit(1); + exit(EXIT_FAILURE); } /* Close the file */ @@ -1649,7 +1649,7 @@ gpfs_invalidate_file_cache(const char *filename) "could not close file '%s' after flushing file cache, ", filename); fprintf(stderr, "errno=%d\n", errno); - exit(1); + exit(EXIT_FAILURE); } } -- cgit v0.12