aboutsummaryrefslogtreecommitdiff
path: root/libbb/xfuncs.c
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-03 20:28:06 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-03 20:28:06 +0000
commit1fa12c6ebcb25e2924778bcbaae4bea1af7b7e6a (patch)
tree1bf7d7300ac410608a50b2c402966d492373ff24 /libbb/xfuncs.c
parentb816238d1a23646f04fe75c44fbb0a9da1eb1e76 (diff)
downloadbusybox-w32-1fa12c6ebcb25e2924778bcbaae4bea1af7b7e6a.tar.gz
busybox-w32-1fa12c6ebcb25e2924778bcbaae4bea1af7b7e6a.tar.bz2
busybox-w32-1fa12c6ebcb25e2924778bcbaae4bea1af7b7e6a.zip
rename bb_default_error_retval -> xfunc_error_retval
git-svn-id: svn://busybox.net/trunk/busybox@16304 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb/xfuncs.c')
-rw-r--r--libbb/xfuncs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c
index 4aa1c3000..f1d4486c3 100644
--- a/libbb/xfuncs.c
+++ b/libbb/xfuncs.c
@@ -414,7 +414,7 @@ void xprint_and_close_file(FILE *file)
414{ 414{
415 // copyfd outputs error messages for us. 415 // copyfd outputs error messages for us.
416 if (bb_copyfd_eof(fileno(file), 1) == -1) 416 if (bb_copyfd_eof(fileno(file), 1) == -1)
417 exit(bb_default_error_retval); 417 exit(xfunc_error_retval);
418 418
419 fclose(file); 419 fclose(file);
420} 420}