| commit | 96ed828d9255190c2ba59f8bc269dca5d30e060e | [log] [tgz] |
|---|---|---|
| author | Juergen Schmied <juergen.schmied@metronet.de> | Sat May 01 10:21:06 1999 +0000 |
| committer | Alexandre Julliard <julliard@winehq.org> | Sat May 01 10:21:06 1999 +0000 |
| tree | 7341d1416ff7d8f4a9fb6c18924c6f27a86b8b74 | |
| parent | c21a911c8949fa0d0fd821513ae30642e950a484 [diff] |
Fixed typo.
diff --git a/win32/code_page.c b/win32/code_page.c index 6e89be1..b59494f 100644 --- a/win32/code_page.c +++ b/win32/code_page.c
@@ -182,7 +182,7 @@ int care_for_eos=0; int dont_copy= (dstlen==0); - if ((!src) | ((!dst) && (!dont_copy)) ) + if ((!src) || ((!dst) && (!dont_copy)) ) { SetLastError(ERROR_INVALID_PARAMETER); return 0; }