about summary refs log tree commit diff
path: root/sysdeps/mach/getloadavg.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/mach/getloadavg.c')
-rw-r--r--sysdeps/mach/getloadavg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/mach/getloadavg.c b/sysdeps/mach/getloadavg.c
index b185b6b62f..30a196ba4a 100644
--- a/sysdeps/mach/getloadavg.c
+++ b/sysdeps/mach/getloadavg.c
@@ -1,5 +1,5 @@
 /* Get system load averages.  Mach version.
-   Copyright (C) 1999 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -48,7 +48,7 @@ getloadavg (double loadavg[], int nelem)
   if (nelem > 3)
     nelem = 3;
   for (i = 0; i < nelem; ++i)
-    loadavg[i] = (double) info.avenrun[i] * (double) LOAD_SCALE;
+    loadavg[i] = (double) info.avenrun[i] / (double) LOAD_SCALE;
 
   return i;
 }