Skip to content

Commit

Permalink
Merge branch 'mw/maint-gcc-warns-unused-write' into maint
Browse files Browse the repository at this point in the history
* mw/maint-gcc-warns-unused-write:
  run-command.c: fix build warnings on Ubuntu
  • Loading branch information
gitster committed Mar 8, 2010
2 parents 990169b + 90ff12a commit 6eb3adf
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions run-command.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,19 +67,21 @@ static int child_notifier = -1;

static void notify_parent(void)
{
write(child_notifier, "", 1);
ssize_t unused;
unused = write(child_notifier, "", 1);
}

static NORETURN void die_child(const char *err, va_list params)
{
char msg[4096];
ssize_t unused;
int len = vsnprintf(msg, sizeof(msg), err, params);
if (len > sizeof(msg))
len = sizeof(msg);

write(child_err, "fatal: ", 7);
write(child_err, msg, len);
write(child_err, "\n", 1);
unused = write(child_err, "fatal: ", 7);
unused = write(child_err, msg, len);
unused = write(child_err, "\n", 1);
exit(128);
}

Expand Down

0 comments on commit 6eb3adf

Please sign in to comment.