]> wimlib.net Git - wimlib/blobdiff - src/timestamp.h
win32_capture_streams(): Only warn on stream lookup fail
[wimlib] / src / timestamp.h
index 4dcc429b9f58d23bee876a90b27061473f9747c5..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;
 }
@@ -72,6 +72,6 @@ extern u64
 get_wim_timestamp();
 
 extern void
-wim_timestamp_to_str(u64 timestamp, char *buf, size_t len);
+wim_timestamp_to_str(u64 timestamp, tchar *buf, size_t len);
 
 #endif