Skip to content

Commit 13601da

Browse files
committed
Update leveldb-subtree subtree to latest upstream
2 parents 291e363 + 1a463c7 commit 13601da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/leveldb/util/env_windows.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ class WindowsRandomAccessFile : public RandomAccessFile {
194194
Status Read(uint64_t offset, size_t n, Slice* result,
195195
char* scratch) const override {
196196
DWORD bytes_read = 0;
197-
OVERLAPPED overlapped = {0};
197+
OVERLAPPED overlapped = {};
198198

199199
overlapped.OffsetHigh = static_cast<DWORD>(offset >> 32);
200200
overlapped.Offset = static_cast<DWORD>(offset);

0 commit comments

Comments
 (0)