diff options
author | Wayne Davison <wayned@users.sourceforge.net> | 2004-10-22 19:38:59 +0000 |
---|---|---|
committer | Wayne Davison <wayned@users.sourceforge.net> | 2004-10-22 19:38:59 +0000 |
commit | 106329c82e991f47d56d8233bb46efecbeb3880f (patch) | |
tree | 337f492f69f525e5a422344a6aad032e80b71185 /Src/jobs.c | |
parent | 12b44290ff4040c91933be773cf97bef821fca2a (diff) | |
download | zsh-106329c82e991f47d56d8233bb46efecbeb3880f.tar.gz zsh-106329c82e991f47d56d8233bb46efecbeb3880f.tar.xz zsh-106329c82e991f47d56d8233bb46efecbeb3880f.zip |
Fixed an arg in a call to times() (from Borzenkov Andrey).
Diffstat (limited to 'Src/jobs.c')
-rw-r--r-- | Src/jobs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/jobs.c b/Src/jobs.c index ed97d2cef..dc5bc10b6 100644 --- a/Src/jobs.c +++ b/Src/jobs.c @@ -266,7 +266,7 @@ get_usage(void) #ifdef HAVE_GETRUSAGE getrusage(RUSAGE_CHILDREN, &child_usage); #else - times(shtms); + times(&shtms); #endif } |