winedump: Make the implementation match the prototype.
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 @@
     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);