diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-03-23 17:03:28 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-03-23 17:03:28 +0000 |
commit | c54f9530eee722a6959087b3b0938b4bb0a3603b (patch) | |
tree | c222328264cb50dec3176ecb603d2dd27b183887 /console-tools/loadacm.c | |
parent | 08ff8a49ba12709413694e2c91fe3d65d8adda5f (diff) |
-Wshadow loadacm fix from Jeff Garzik
Diffstat (limited to 'console-tools/loadacm.c')
-rw-r--r-- | console-tools/loadacm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/console-tools/loadacm.c b/console-tools/loadacm.c index e5a29b6a1..5dbf03e36 100644 --- a/console-tools/loadacm.c +++ b/console-tools/loadacm.c @@ -149,7 +149,7 @@ static int uni_screen_map_read_ascii(FILE * fp, unicode buf[], int *is_unicode) int tmp_is_unicode; /* tmp for is_unicode calculation */ int i; /* loop index - result holder */ int ret_code = 0; /* return code */ - sigset_t sigset, old_sigset; + sigset_t acmsigset, old_sigset; assert(is_unicode); @@ -163,9 +163,9 @@ static int uni_screen_map_read_ascii(FILE * fp, unicode buf[], int *is_unicode) buf[i] = 0xfffd; /* block SIGCHLD */ - sigemptyset(&sigset); - sigaddset(&sigset, SIGCHLD); - sigprocmask(SIG_BLOCK, &sigset, &old_sigset); + sigemptyset(&acmsigset); + sigaddset(&acmsigset, SIGCHLD); + sigprocmask(SIG_BLOCK, &acmsigset, &old_sigset); do { if (NULL == fgets(buffer, sizeof(buffer), fp)) { |