Chromium Code Reviews| Index: third_party/zlib/zutil.c |
| =================================================================== |
| --- third_party/zlib/zutil.c (revision 7877) |
| +++ third_party/zlib/zutil.c (working copy) |
| @@ -141,7 +141,9 @@ |
| * errno. We define it as a global variable to simplify porting. |
| * Its value is always 0 and should not be used. |
| */ |
| - int errno = 0; |
| + // Google Gears modification: zutil.h defines errno as z_errno for WinCE. |
| + //int errno = 0; |
| + int z_errno = 0; |
| #endif |
| #ifndef HAVE_MEMCPY |