]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - client_common.c
Fix some format string warnings on Max OS
[paraslash.git] / client_common.c
index a0128ad9b4508835caf4d11478b2e340b73118df..330c9f7028b9b67fbddaad39ec4dd843a8ec4d8d 100644 (file)
@@ -141,7 +141,7 @@ void client_pre_select(struct sched *s, struct task *t)
                return;
        case CL_SENDING_STDIN:
                if (*pcd->in_loaded) {
-                       PARA_INFO_LOG("loaded: %d\n", *pcd->in_loaded);
+                       PARA_INFO_LOG("loaded: %zd\n", *pcd->in_loaded);
                        para_fd_set(pcd->fd, &s->wfds, &s->max_fileno);
                        pcd->check_w = 1;
                } else {
@@ -278,7 +278,7 @@ void client_post_select(struct sched *s, struct task *t)
                        pcd->status = CL_RECEIVING_SERVER_OUTPUT;
                return;
        case CL_SENDING_STDIN: /* FIXME: might block */
-               PARA_INFO_LOG("loaded: %d\n", *pcd->in_loaded);
+               PARA_INFO_LOG("loaded: %zd\n", *pcd->in_loaded);
                t->ret = send_bin_buffer(pcd->fd, pcd->inbuf, *pcd->in_loaded);
                if (t->ret <= 0) {
                        if (!t->ret)