From 23fa13c76b7fb87e020834ae00a137e842d73886 Mon Sep 17 00:00:00 2001 From: James Turner Date: Sat, 9 Nov 2013 07:13:00 -0800 Subject: [PATCH] Bug 1023, crash on replay. Fix by Jeff Biggs, commit 7d80b30d28baccf80958d9db488364a9a5c3884b from osgearth branch. --- src/Aircraft/replay.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Aircraft/replay.cxx b/src/Aircraft/replay.cxx index 30e5bf675..c7008fd29 100644 --- a/src/Aircraft/replay.cxx +++ b/src/Aircraft/replay.cxx @@ -907,7 +907,7 @@ FGReplay::saveTape(const SGPropertyNode* ConfigData) struct tm *local_tm; local_tm = localtime( &calendar_time ); char time_str[256]; - strftime( time_str, 256, "%Y%02m%02d-%02H%02M%02S", local_tm); + strftime( time_str, 256, "%Y%m%d-%H%M%S", local_tm); p.concat(time_str); p.concat(".fgtape"); -- 2.39.5