]> granicus.if.org Git - fcron/commitdiff
fix incorrect var type in 2 snprintf calls
authorthib <thib>
Sun, 17 Nov 2002 13:14:06 +0000 (13:14 +0000)
committerthib <thib>
Sun, 17 Nov 2002 13:14:06 +0000 (13:14 +0000)
socket.c

index 3711ce229cc3ae09a23cf59f97b8380ed7cfeccf..d8080dc52d8bcdb7d34a4fe268d66ce36c81985f 100644 (file)
--- a/socket.c
+++ b/socket.c
@@ -21,7 +21,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: socket.c,v 1.10 2002-10-28 17:56:53 thib Exp $ */
+ /* $Id: socket.c,v 1.11 2002-11-17 13:14:06 thib Exp $ */
 
 /* This file contains all fcron's code (server) to handle communication with fcrondyn */
 
@@ -301,7 +301,7 @@ print_line(int fd, struct cl_t *line,  unsigned char *details, pid_t pid, int in
        len += snprintf(buf+len, sizeof(buf)-len, " %-9s", opt);
     }
     if ( bit_test(details, FIELD_LAVG) ) {
-       len += snprintf(buf+len, sizeof(buf)-len, " %.1lf,%.1lf,%.1lf",
+       len += snprintf(buf+len, sizeof(buf)-len, " %.1f,%.1f,%.1f",
                        ((double)((line->cl_lavg)[0]))/10,
                        ((double)((line->cl_lavg)[1]))/10,
                        ((double)((line->cl_lavg)[2]))/10);
@@ -379,7 +379,7 @@ cmd_ls(struct fcrondyn_cl *client, long int *cmd, int fd, int is_root)
            char lavg_str[TERM_LEN];
            getloadavg(lavg, 3);
            i = snprintf(lavg_str, sizeof(lavg_str), "Current load average : "
-                        "%.1lf, %.1lf, %.1lf\n", lavg[0], lavg[1], lavg[2]);
+                        "%.1f, %.1f, %.1f\n", lavg[0], lavg[1], lavg[2]);
            send(fd, lavg_str, i, 0);
 
            bit_set(fields, FIELD_LAVG);