]> wimlib.net Git - wimlib/blobdiff - src/timestamp.h
Win32: Improve restoring of special attributes
[wimlib] / src / timestamp.h
index 0ba614724b73da61454370d69d227ad922a693f3..91006fc0ac849f8f3274822714551f6a392ecb4c 100644 (file)
@@ -63,7 +63,7 @@ wim_timestamp_to_timespec(u64 timestamp)
 {
        struct timespec ts;
        ts.tv_sec = (timestamp - intervals_1601_to_1970) / intervals_per_second;
-       ts.tv_nsec = ((timestamp - intervals_1601_to_1970) % intervals_per_second) * 
+       ts.tv_nsec = ((timestamp - intervals_1601_to_1970) % intervals_per_second) *
                        nanoseconds_per_interval;
        return ts;
 }