aboutsummaryrefslogtreecommitdiffhomepage
path: root/history.cpp
diff options
context:
space:
mode:
authorGravatar Konrad Borowski <x.fix@o2.pl>2014-09-28 15:03:55 +0200
committerGravatar Konrad Borowski <x.fix@o2.pl>2014-09-28 15:03:55 +0200
commit84af3dcd18227d343070c1df4112155ef9207526 (patch)
tree8116803f8587017397752b5ba12f5694ab3ca989 /history.cpp
parent26051ea1984ee6f6329d46eb3c001a5d2bfe1bae (diff)
Fix YAML indentation in history.
Diffstat (limited to 'history.cpp')
-rw-r--r--history.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/history.cpp b/history.cpp
index ff65c454..2a367cd2 100644
--- a/history.cpp
+++ b/history.cpp
@@ -276,11 +276,11 @@ static void append_yaml_to_buffer(const wcstring &wcmd, time_t timestamp, const
char timestamp_str[96];
snprintf(timestamp_str, sizeof timestamp_str, "%ld", (long) timestamp);
- buffer->append(" when: ", timestamp_str, "\n");
+ buffer->append(" when: ", timestamp_str, "\n");
if (! required_paths.empty())
{
- buffer->append(" paths:\n");
+ buffer->append(" paths:\n");
for (path_list_t::const_iterator iter = required_paths.begin(); iter != required_paths.end(); ++iter)
{