diff options
author | David Tardon <dtardon@redhat.com> | 2012-06-12 09:30:12 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-06-13 06:06:43 +0200 |
commit | 02d9bd3b14575442a6532915cdb18bb4a69ad35f (patch) | |
tree | c7f1ac6676a459bc2ce9d8eb57ccc3a00d3e7df1 /shell | |
parent | 0f6919cf551507f1cb04ff5cbb04d7d3cd707e5c (diff) |
fix typo: = -> ==
Change-Id: Iba320b00bdef3704bdfe1abe2a60b8c767a571ec
Diffstat (limited to 'shell')
-rwxr-xr-x | shell/source/backends/wininetbe/wininetbackend.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/source/backends/wininetbe/wininetbackend.cxx b/shell/source/backends/wininetbe/wininetbackend.cxx index ac6829e60c73..06855b5302ce 100755 --- a/shell/source/backends/wininetbe/wininetbackend.cxx +++ b/shell/source/backends/wininetbe/wininetbackend.cxx @@ -140,7 +140,7 @@ WinInetBackend::WinInetBackend() if (!ok) { DWORD err = GetLastError(); - if (err = ERROR_INSUFFICIENT_BUFFER) + if (err == ERROR_INSUFFICIENT_BUFFER) { // allocate sufficient space on the heap // insufficient space on the heap results |