Module: wine Branch: master Commit: 2d0ca5b2a97ffa4ffc01666d162c8acc1f1e82b0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=2d0ca5b2a97ffa4ffc01666d16...
Author: Dmitry Timoshkov dmitry@codeweavers.com Date: Sun Nov 26 16:03:49 2006 +0800
winedump: Make the implementation match the prototype.
---
tools/winedump/dump.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tools/winedump/dump.c b/tools/winedump/dump.c index 96457a0..fe86190 100644 --- a/tools/winedump/dump.c +++ b/tools/winedump/dump.c @@ -79,7 +79,7 @@ void dump_data( const unsigned char *ptr 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);