From: James Turner Date: Sat, 9 Nov 2013 15:13:00 +0000 (-0800) Subject: Bug 1023, crash on replay. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=23fa13c76b7fb87e020834ae00a137e842d73886;p=flightgear.git Bug 1023, crash on replay. Fix by Jeff Biggs, commit 7d80b30d28baccf80958d9db488364a9a5c3884b from osgearth branch. --- 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");