projects
/
kernel
/
swap-modules.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
07e0697
)
[FIX] time format: nsec:sec -> sec:nsec again
author
Nikita Kalyazin
<n.kalyazin@samsung.com>
Sun, 14 Jul 2013 08:49:56 +0000
(12:49 +0400)
committer
Nikita 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
patch
|
blob
|
history
diff --git
a/writer/swap_writer_module.c
b/writer/swap_writer_module.c
index
6f7d4eb
..
0711702
100644
(file)
--- a/
writer/swap_writer_module.c
+++ b/
writer/swap_writer_module.c
@@
-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_n
sec;
+ return ((u64)ts->tv_
nsec) << 32 | ts->tv_
sec;
}
/* ============================================================================