diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-07-09 09:59:32 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-07-09 09:59:32 +0200 |
commit | ce4f404c6f059abb4988f4549c6e46a3ba0d56ec (patch) | |
tree | 40ca33a90fb2c0ea0092a5571517cc681bae1945 /git.c | |
parent | git-svn.txt: fix description of fetch flags accepted by clone. (diff) | |
parent | MinGW: truncate exit()'s argument to lowest 8 bits (diff) | |
download | git-ce4f404c6f059abb4988f4549c6e46a3ba0d56ec.tar.xz git-ce4f404c6f059abb4988f4549c6e46a3ba0d56ec.zip |
Merge branch 'js/run-command-updates' (early part)
* 'js/run-command-updates' (early part):
MinGW: truncate exit()'s argument to lowest 8 bits
Diffstat (limited to 'git.c')
-rw-r--r-- | git.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -245,7 +245,7 @@ static int run_builtin(struct cmd_struct *p, int argc, const char **argv) status = p->fn(argc, argv, prefix); if (status) - return status & 0xff; + return status; /* Somebody closed stdout? */ if (fstat(fileno(stdout), &st)) |