winedump: Make the implementation match the prototype.

This commit is contained in:
Dmitry Timoshkov 2006-11-26 16:03:49 +08:00 committed by Alexandre Julliard
parent eea1b5e219
commit 2d0ca5b2a9
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ void dump_data( const unsigned char *ptr, unsigned int size, const char *prefix
printf( "\n" );
}
const char *get_time_str(const unsigned long _t)
const char *get_time_str(unsigned long _t)
{
const time_t t = (const time_t)_t;
const char *str = ctime(&t);