Skip to content

Commit 1a463c7

Browse files
committed
Squashed 'src/leveldb/' changes from 22f1e4a02f..e2f10b4e47
e2f10b4e47 Merge bitcoin-core/leveldb-subtree#34: win32: fix -Wmissing-field-initializers warnings 12c52b392d win32: fix -Wmissing-field-initializers warnings git-subtree-dir: src/leveldb git-subtree-split: e2f10b4e47bc950a81bc96d1c6db3a8048216642
1 parent f608f25 commit 1a463c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)