From f0ed376eda5d5c25d270e5100a881fb2d801bee6 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 26 Oct 2006 23:21:47 +0000 Subject: remove bb_printf and the like --- coreutils/expr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'coreutils/expr.c') diff --git a/coreutils/expr.c b/coreutils/expr.c index ea99d8b5b..854a657f9 100644 --- a/coreutils/expr.c +++ b/coreutils/expr.c @@ -87,11 +87,11 @@ int expr_main(int argc, char **argv) bb_error_msg_and_die("syntax error"); if (v->type == integer) - bb_printf("%" PF_REZ "d\n", PF_REZ_TYPE v->u.i); + printf("%" PF_REZ "d\n", PF_REZ_TYPE v->u.i); else puts(v->u.s); - exit(null(v)); + fflush_stdout_and_exit(null(v)); } /* Return a VALUE for I. */ -- cgit v1.2.3