]> git.proxmox.com Git - mirror_zfs.git/blobdiff - lib/libspl/gethrtime.c
cstyle: Resolve C style issues
[mirror_zfs.git] / lib / libspl / gethrtime.c
index c2fd5e0341d3ee2939115e454a006a768b0874c0..95ceb18e1197e505e2c96330174026f6d27a95f8 100644 (file)
@@ -38,8 +38,8 @@ gethrtime(void)
        rc = clock_gettime(CLOCK_MONOTONIC, &ts);
        if (rc) {
                fprintf(stderr, "Error: clock_gettime() = %d\n", rc);
-               abort();
+               abort();
        }
 
-       return (((u_int64_t)ts.tv_sec) * NANOSEC) + ts.tv_nsec;
+       return ((((u_int64_t)ts.tv_sec) * NANOSEC) + ts.tv_nsec);
 }