(print_global_hdr): Fix typo in cast in ctime call.

From-SVN: r5783
This commit is contained in:
Richard Kenner 1993-10-13 17:57:52 -04:00
parent 0e57600536
commit 46ab92057f
1 changed files with 1 additions and 1 deletions

View File

@ -755,7 +755,7 @@ void
print_global_hdr (ptr)
struct filehdr *ptr;
{
char *time = ctime ((off_t *)&ptr->f_timdat);
char *time = ctime ((time_t *)&ptr->f_timdat);
ushort flags = ptr->f_flags;
printf("Global file header:\n");