diff options
author | Paul Smith <psmith@gnu.org> | 1999-07-20 22:34:41 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 1999-07-20 22:34:41 +0000 |
commit | 73846549f62b832ca6ff761ad3640a86d3b32c86 (patch) | |
tree | 040672d69082d86fe744ca7157bee5b72147f511 /getloadavg.c | |
parent | 169e6b8c3de0145c61ff2127b7c191d12f069d2b (diff) | |
download | gunmake-73846549f62b832ca6ff761ad3640a86d3b32c86.tar.gz |
* Fix memory leaks, fd leaks, and some long-standing bugs recognizing when
targets need to have their modtimes rechecked (-n, etc.)
Diffstat (limited to 'getloadavg.c')
-rw-r--r-- | getloadavg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/getloadavg.c b/getloadavg.c index 36245ef..79eedfc 100644 --- a/getloadavg.c +++ b/getloadavg.c @@ -966,7 +966,7 @@ getloadavg (loadavg, nelem) { /* Set the channel to close on exec, so it does not litter any child's descriptor table. */ -# ifdef FD_SETFD +# ifdef F_SETFD # ifndef FD_CLOEXEC # define FD_CLOEXEC 1 # endif |