]> git.proxmox.com Git - mirror_zfs-debian.git/blobdiff - cmd/zed/zed_conf.c
New upstream version 0.7.2
[mirror_zfs-debian.git] / cmd / zed / zed_conf.c
index 6dfd14e56a91cca719b941940cfd4b9ade342e86..a79fe862d97a9c144d5b8a065a992fbe157780e6 100644 (file)
@@ -513,7 +513,7 @@ zed_conf_write_pid(struct zed_conf *zcp)
        /*
         * Write PID file.
         */
-       n = snprintf(buf, sizeof (buf), "%d\n", (int) getpid());
+       n = snprintf(buf, sizeof (buf), "%d\n", (int)getpid());
        if ((n < 0) || (n >= sizeof (buf))) {
                errno = ERANGE;
                zed_log_msg(LOG_ERR, "Failed to write PID file \"%s\": %s",
@@ -637,7 +637,7 @@ zed_conf_read_state(struct zed_conf *zcp, uint64_t *eidp, int64_t etime[])
                    "Failed to read state file: %s", strerror(errno));
                return (-1);
        }
-       if (lseek(zcp->state_fd, 0, SEEK_SET) == (off_t) -1) {
+       if (lseek(zcp->state_fd, 0, SEEK_SET) == (off_t)-1) {
                zed_log_msg(LOG_WARNING,
                    "Failed to reposition state file offset: %s",
                    strerror(errno));
@@ -687,7 +687,7 @@ zed_conf_write_state(struct zed_conf *zcp, uint64_t eid, int64_t etime[])
                    "Failed to write state file: %s", strerror(errno));
                return (-1);
        }
-       if (lseek(zcp->state_fd, 0, SEEK_SET) == (off_t) -1) {
+       if (lseek(zcp->state_fd, 0, SEEK_SET) == (off_t)-1) {
                zed_log_msg(LOG_WARNING,
                    "Failed to reposition state file offset: %s",
                    strerror(errno));