Commit f860ded3 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

ULARGE_INTEGER may have a dummy struct name.

parent 242d2d64
......@@ -161,8 +161,13 @@ ULARGE_INTEGER byte_count, file_size;
}
else {
file_count++;
#ifndef NONAMELESSSTRUCT
file_size.LowPart = (fd+i)->nFileSizeLow;
file_size.HighPart = (fd+i)->nFileSizeHigh;
#else
file_size.s.LowPart = (fd+i)->nFileSizeLow;
file_size.s.HighPart = (fd+i)->nFileSizeHigh;
#endif
byte_count.QuadPart += file_size.QuadPart;
WCMD_output ("%8s %8s %10s %s\n",
datestring, timestring,
......
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