Commit 961e07b8 authored by Tom Lane's avatar Tom Lane

Minor cleanup for win32stat.c.

Fix silly typo in previous commit.

Discussion: https://postgr.es/m/CAC+AXB0g44SbvSpC86o_1HWh8TAU2pZrMRW6tJT-dkijotx5Qg@mail.gmail.com
parent c94cfb38
...@@ -148,7 +148,7 @@ fileinfo_to_stat(HANDLE hFile, struct stat *buf) ...@@ -148,7 +148,7 @@ fileinfo_to_stat(HANDLE hFile, struct stat *buf)
buf->st_nlink = fiData.nNumberOfLinks; buf->st_nlink = fiData.nNumberOfLinks;
buf->st_size = ((((uint64) fiData.nFileSizeHigh) << 32) | buf->st_size = ((((uint64) fiData.nFileSizeHigh) << 32) |
fiData.nFileSizeLowi); fiData.nFileSizeLow);
return 0; return 0;
} }
......
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