| Index: printing/backend/win_helper.cc
|
| diff --git a/printing/backend/win_helper.cc b/printing/backend/win_helper.cc
|
| index 914dacb06f71fd0dc3fd8246502b8dd48e6b21b4..ac745475f1110aafc89bd6b8bce256d7527011b8 100644
|
| --- a/printing/backend/win_helper.cc
|
| +++ b/printing/backend/win_helper.cc
|
| @@ -91,8 +91,8 @@ HRESULT StreamFromPrintTicket(const std::string& print_ticket,
|
| base::checked_cast<ULONG>(print_ticket.length()),
|
| &bytes_written);
|
| DCHECK(bytes_written == print_ticket.length());
|
| - LARGE_INTEGER pos = {0};
|
| - ULARGE_INTEGER new_pos = {0};
|
| + LARGE_INTEGER pos = {};
|
| + ULARGE_INTEGER new_pos = {};
|
| (*stream)->Seek(pos, STREAM_SEEK_SET, &new_pos);
|
| return S_OK;
|
| }
|
|
|