mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
12 lines
301 B
Plaintext
12 lines
301 B
Plaintext
|
--- rfsv/rfsv16.cc.orig Sat Feb 19 21:10:24 2000
|
||
|
+++ rfsv/rfsv16.cc Sat Feb 19 21:11:09 2000
|
||
|
@@ -134,7 +134,7 @@
|
||
|
{
|
||
|
char dateBuff[100];
|
||
|
struct tm *t;
|
||
|
- t = gmtime(&date);
|
||
|
+ t = gmtime((time_t *)&date);
|
||
|
strftime(dateBuff, 100, "%d/%m/%y %H:%M:%S", t);
|
||
|
cout << " " << dateBuff;
|
||
|
}
|