From 59df6f73988b103f0dcfffeaec10642527336c5e Mon Sep 17 00:00:00 2001 From: Matt Kraai Date: Wed, 16 May 2001 14:21:09 +0000 Subject: Change 'printf("%s\n", ...)' into 'puts(...)'. Noted and patched in hostname.c by Larry Doolittle. --- expr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'expr.c') diff --git a/expr.c b/expr.c index 4a537bf33..d6cc82e3e 100644 --- a/expr.c +++ b/expr.c @@ -89,8 +89,8 @@ int expr_main (int argc, char **argv) if (v->type == integer) printf ("%d\n", v->u.i); - else - printf ("%s\n", v->u.s); + else + puts (v->u.s); exit (null (v)); } -- cgit v1.2.3