Commit 14e70340 authored by Alexandre Julliard's avatar Alexandre Julliard

Fixed get_time_str definition to match the prototype.

parent ac3ac35f
......@@ -79,7 +79,7 @@ void dump_data( const unsigned char *ptr, unsigned int size, const char *prefix
printf( "\n" );
}
const char* get_time_str(DWORD _t)
const char* get_time_str(unsigned long _t)
{
time_t t = (time_t)_t;
const char *str = ctime(&t);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment