From: Eric Biggers Date: Tue, 14 May 2013 02:47:22 +0000 (-0500) Subject: print_image_info(): Print last modification time correctly X-Git-Tag: v1.4.0~70 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=2784a74a03a6fe989e8d09ced028959ed1f2a2fd print_image_info(): Print last modification time correctly --- diff --git a/src/xml.c b/src/xml.c index a6e745aa..19cf5f32 100644 --- a/src/xml.c +++ b/src/xml.c @@ -1211,7 +1211,7 @@ print_image_info(const struct wim_info *wim_info, int image) wim_timestamp_to_str(image_info->creation_time, buf, sizeof(buf)); tprintf(T("Creation Time: %"TS"\n"), buf); - wim_timestamp_to_str(image_info->creation_time, buf, sizeof(buf)); + wim_timestamp_to_str(image_info->last_modification_time, buf, sizeof(buf)); tprintf(T("Last Modification Time: %"TS"\n"), buf); if (image_info->windows_info_exists) print_windows_info(&image_info->windows_info);