|
From: Michael G. <mg...@te...> - 2005-03-10 08:37:03
|
I'm on Linux right now and therefor can't test it but I think
your format string is wrong.
> if(_stati64(argv[ix],&sx)) {
> printf("%s\n","failed");
> }
> else {
> printf("%10lu ",sx.st_size);
printf("%I64u ",sx.st_size);
(on Linux you'd probably use
printf("%llu ",sx.st_size);
)
> printf("%s",ctime(&sx.st_mtime));
> }
> }
Best,
Michael
=2D-=20
Vote against SPAM - see http://www.politik-digital.de/spam/
Michael Gerdau email: mg...@te...
GPG-keys available on request or at public keyserver
|