diff options
author | sabetts <sabetts> | 2003-05-17 10:25:22 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2003-05-17 10:25:22 +0000 |
commit | d0d9444986d81d1586fc1596d61f7a17e9058c41 (patch) | |
tree | a2f362d4455afd6549778f44ab2a3f17a4a41200 /src/main.c | |
parent | 768afe0f97f0d164502202169dc1761d2b6321a2 (diff) | |
download | ratpoison-d0d9444986d81d1586fc1596d61f7a17e9058c41.zip |
(chld_handler): Variable declaration placed in proper
location.
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -172,9 +172,10 @@ alrm_handler (int signum) void chld_handler (int signum) { + rp_child_info *cur; int pid, status, serrno; + serrno = errno; - rp_child_info *cur; while (1) { |