[Python-checkins] r86805 - python/branches/py3k-stat-on-windows/Modules/posixmodule.c
hirokazu.yamamoto
python-checkins at python.org
Fri Nov 26 15:15:45 CET 2010
Author: hirokazu.yamamoto
Date: Fri Nov 26 15:15:45 2010
New Revision: 86805
Log:
Typo fix: should use ULONG not BOOL.
Modified:
python/branches/py3k-stat-on-windows/Modules/posixmodule.c
Modified: python/branches/py3k-stat-on-windows/Modules/posixmodule.c
==============================================================================
--- python/branches/py3k-stat-on-windows/Modules/posixmodule.c (original)
+++ python/branches/py3k-stat-on-windows/Modules/posixmodule.c Fri Nov 26 15:15:45 2010
@@ -1213,7 +1213,7 @@
win32_xstat_for_handle(HANDLE hFile, struct win32_stat *result, BOOL traverse, int depth)
{
int code;
- BOOL reparse_tag;
+ ULONG reparse_tag;
wchar_t *target_path;
BY_HANDLE_FILE_INFORMATION info;
More information about the Python-checkins
mailing list