about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorWayne Davison <wayned@users.sourceforge.net>2004-10-22 19:38:59 +0000
committerWayne Davison <wayned@users.sourceforge.net>2004-10-22 19:38:59 +0000
commit106329c82e991f47d56d8233bb46efecbeb3880f (patch)
tree337f492f69f525e5a422344a6aad032e80b71185 /Src
parent12b44290ff4040c91933be773cf97bef821fca2a (diff)
downloadzsh-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')
-rw-r--r--Src/jobs.c2
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
 }