summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-10-18 10:45:03 +0100
committerCarl Hetherington <cth@carlh.net>2013-10-18 10:45:03 +0100
commit58645afe4a843e69ff1c72ffbd772746d8edbef1 (patch)
tree33ad80324f9fc6880ddba960555f7182dc3e55ce /src
parenta106199fe8e83e136d0ecdce32f3a593f62571a9 (diff)
tm_to_string() should use 24 hour clock.
Diffstat (limited to 'src')
-rw-r--r--src/util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cc b/src/util.cc
index ea014bc7..26fe1b5e 100644
--- a/src/util.cc
+++ b/src/util.cc
@@ -298,7 +298,7 @@ string
libdcp::tm_to_string (struct tm* tm)
{
char buffer[64];
- strftime (buffer, 64, "%Y-%m-%dT%I:%M:%S", tm);
+ strftime (buffer, 64, "%Y-%m-%dT%H:%M:%S", tm);
int offset = 0;