[FIX] time format: nsec:sec -> sec:nsec again
authorNikita Kalyazin <n.kalyazin@samsung.com>
Sun, 14 Jul 2013 08:49:56 +0000 (12:49 +0400)
committerNikita Kalyazin <n.kalyazin@samsung.com>
Sun, 14 Jul 2013 08:49:59 +0000 (12:49 +0400)
The previous file where I'd done this removed.

writer/swap_writer_module.c

index 6f7d4eb..0711702 100644 (file)
@@ -59,7 +59,7 @@ static char *get_current_buf(void)
 
 static inline u64 timespec2time(struct timespec *ts)
 {
-       return ((u64)ts->tv_sec) << 32 | ts->tv_nsec;
+       return ((u64)ts->tv_nsec) << 32 | ts->tv_sec;
 }
 
 /* ============================================================================