diff options
Diffstat (limited to 'datetime.cc')
-rw-r--r-- | datetime.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/datetime.cc b/datetime.cc index 586722b5..4f6cf0d3 100644 --- a/datetime.cc +++ b/datetime.cc @@ -4,8 +4,8 @@ namespace ledger { -static std::time_t now = std::time(NULL); - struct std::tm * now_tm = std::localtime(&now); +std::time_t now = std::time(NULL); +struct std::tm * now_tm = std::localtime(&now); static std::time_t base = -1; static int base_year = -1; |