Skip to content

Commit

Permalink
use appropriate typedefs
Browse files Browse the repository at this point in the history
Signed-off-by: David Rientjes <rientjes@google.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
David Rientjes authored and Junio C Hamano committed Aug 15, 2006
1 parent 0bef57e commit 6f002f9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
3 changes: 1 addition & 2 deletions fetch-clone.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,8 @@ static int finish_pack(const char *pack_tmp_name, const char *me)

for (;;) {
int status, code;
int retval = waitpid(pid, &status, 0);

if (retval < 0) {
if (waitpid(pid, &status, 0) < 0) {
if (errno == EINTR)
continue;
error("waitpid failed (%s)", strerror(errno));
Expand Down
3 changes: 2 additions & 1 deletion merge-index.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ static int err;

static void run_program(void)
{
int pid = fork(), status;
pid_t pid = fork();
int status;

if (pid < 0)
die("unable to fork");
Expand Down
8 changes: 4 additions & 4 deletions run-command.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ int run_command_v_opt(int argc, const char **argv, int flags)
}
for (;;) {
int status, code;
int retval = waitpid(pid, &status, 0);
pid_t waiting = waitpid(pid, &status, 0);

if (retval < 0) {
if (waiting < 0) {
if (errno == EINTR)
continue;
error("waitpid failed (%s)", strerror(retval));
error("waitpid failed (%s)", strerror(errno));
return -ERR_RUN_COMMAND_WAITPID;
}
if (retval != pid)
if (waiting != pid)
return -ERR_RUN_COMMAND_WAITPID_WRONG_PID;
if (WIFSIGNALED(status))
return -ERR_RUN_COMMAND_WAITPID_SIGNAL;
Expand Down
2 changes: 1 addition & 1 deletion unpack-trees.c
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ static void unlink_entry(char *name)
}
}

static volatile int progress_update = 0;
static volatile sig_atomic_t progress_update = 0;

static void progress_interval(int signum)
{
Expand Down

0 comments on commit 6f002f9

Please sign in to comment.