From 86f8e8de696404b85c334916bfe3d69bdd4291c6 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Mon, 5 Mar 2012 10:06:28 +0000 Subject: 30307 plus tweak suggsted by Wayne: use %lld for zlong when long long --- Src/exec.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Src/exec.c') diff --git a/Src/exec.c b/Src/exec.c index aa5c1000e..6ebc9c014 100644 --- a/Src/exec.c +++ b/Src/exec.c @@ -3252,7 +3252,11 @@ execcmd(Estate state, int input, int output, int how, int last1) } if (isset(PRINTEXITVALUE) && isset(SHINSTDIN) && lastval && !subsh) { +#if defined(ZLONG_IS_LONG_LONG) && defined(PRINTF_HAS_LLD) + fprintf(stderr, "zsh: exit %lld\n", lastval); +#else fprintf(stderr, "zsh: exit %ld\n", (long)lastval); +#endif fflush(stderr); } -- cgit 1.4.1