diff options
author | Denis Vlasenko | 2006-10-26 23:21:47 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-26 23:21:47 +0000 |
commit | f0ed376eda5d5c25d270e5100a881fb2d801bee6 (patch) | |
tree | 79166b700c497fbe798b6031e5bbff97e0933573 /coreutils/expr.c | |
parent | 670a6626cabc1498f32b35f959591f8621d8447e (diff) | |
download | busybox-f0ed376eda5d5c25d270e5100a881fb2d801bee6.zip busybox-f0ed376eda5d5c25d270e5100a881fb2d801bee6.tar.gz |
remove bb_printf and the like
Diffstat (limited to 'coreutils/expr.c')
-rw-r--r-- | coreutils/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/expr.c b/coreutils/expr.c index ea99d8b..854a657 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. */ |