diff options
Diffstat (limited to 'expr.c')
-rw-r--r-- | expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -89,8 +89,8 @@ int expr_main (int argc, char **argv) | |||
89 | 89 | ||
90 | if (v->type == integer) | 90 | if (v->type == integer) |
91 | printf ("%d\n", v->u.i); | 91 | printf ("%d\n", v->u.i); |
92 | else | 92 | else |
93 | printf ("%s\n", v->u.s); | 93 | puts (v->u.s); |
94 | 94 | ||
95 | exit (null (v)); | 95 | exit (null (v)); |
96 | } | 96 | } |