]> git.proxmox.com Git - mirror_zfs.git/blobdiff - lib/libspl/gethrestime.c
cstyle: Resolve C style issues
[mirror_zfs.git] / lib / libspl / gethrestime.c
index be163f86ce4662256cff69c475cc86fc9628c913..d37cc2d5994f4c02cbbedf50e077d5fcf01fb46d 100644 (file)
@@ -30,9 +30,9 @@
 void
 gethrestime(timestruc_t *ts)
 {
-        struct timeval tv;
+       struct timeval tv;
 
-        gettimeofday(&tv, NULL);
-        ts->tv_sec = tv.tv_sec;
-        ts->tv_nsec = tv.tv_usec * NSEC_PER_USEC;
+       gettimeofday(&tv, NULL);
+       ts->tv_sec = tv.tv_sec;
+       ts->tv_nsec = tv.tv_usec * NSEC_PER_USEC;
 }