diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2016-07-27 00:37:04 +0100 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2016-07-27 00:37:04 +0100 |
| commit | 0d2c5072b083a893843e4fa87f9f702979069e14 (patch) | |
| tree | 4f5233cdab03ce9ffbb51d974950c08d9ac274e0 /src/buffer.cc | |
| parent | 09188a2bc14ecaf01042a3a09c20c31cbe0841fa (diff) | |
| parent | f8224b138412886642d15e464b3aa94f702d3baa (diff) | |
Merge remote-tracking branch 'lenormf/fix-timespec-conversion'
Diffstat (limited to 'src/buffer.cc')
| -rw-r--r-- | src/buffer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.cc b/src/buffer.cc index ec970676..45834f3c 100644 --- a/src/buffer.cc +++ b/src/buffer.cc @@ -71,7 +71,7 @@ Buffer::Buffer(String name, Flags flags, StringView data, m_flags{flags | Flags::NoUndo}, m_history{m_next_history_id++, nullptr}, m_history_cursor{&m_history}, m_last_save_history_cursor{&m_history}, - m_fs_timestamp{fs_timestamp} + m_fs_timestamp{fs_timestamp.tv_sec, fs_timestamp.tv_nsec} { ParsedLines parsed_lines = parse_lines(data); |
