summaryrefslogtreecommitdiff
path: root/src/emacs.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/emacs.cc')
-rw-r--r--src/emacs.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emacs.cc b/src/emacs.cc
index 1e8226d1..b63375b2 100644
--- a/src/emacs.cc
+++ b/src/emacs.cc
@@ -43,7 +43,7 @@ void format_emacs_xacts::write_entry(entry_t& entry)
break;
}
- out << (static_cast<unsigned long>(entry.beg_line) + 1) << " ";
+ out << (static_cast<std::size_t>(entry.beg_line) + 1) << " ";
tm when = gregorian::to_tm(*entry.date());
std::time_t date = std::mktime(&when); // jww (2008-04-20): Is this GMT or local?
@@ -79,7 +79,7 @@ void format_emacs_xacts::operator()(xact_t& xact)
out << "\n";
}
- out << " (" << (static_cast<unsigned long>(xact.beg_line) + 1) << " ";
+ out << " (" << (static_cast<std::size_t>(xact.beg_line) + 1) << " ";
out << "\"" << xact.reported_account()->fullname() << "\" \""
<< xact.amount << "\"";