diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/main.c | 3 |
2 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2003-05-17 Shawn Betts <sabetts@sfu.ca> + * src/main.c (chld_handler): Variable declaration placed in proper + location. + * src/actions.c (spawn): always put the DISPLAY string in the environment. @@ -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) { |