From 58645afe4a843e69ff1c72ffbd772746d8edbef1 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 18 Oct 2013 10:45:03 +0100 Subject: tm_to_string() should use 24 hour clock. --- src/util.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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; -- cgit v1.2.3