diff options
| author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-03-12 12:40:16 (GMT) | 
|---|---|---|
| committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-03-12 12:40:16 (GMT) | 
| commit | 23b4ddf7c02459809ab3a8256c02a0362dcf9f88 (patch) | |
| tree | f667fb1f4c14f84add89f381a3a9b0f82a69a912 | |
| parent | 1216fe9100028dc5d7793daf83d7508803425ce9 (diff) | |
| parent | 180ed90a9fa30d1ae798dd7c40c1214767587e6a (diff) | |
| download | tcl-23b4ddf7c02459809ab3a8256c02a0362dcf9f88.zip tcl-23b4ddf7c02459809ab3a8256c02a0362dcf9f88.tar.gz tcl-23b4ddf7c02459809ab3a8256c02a0362dcf9f88.tar.bz2  | |
[Bug 3388350] mingw64 compiler warnings
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | win/tclWinFile.c | 4 | 
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2012-03-12  Jan Nijtmans  <nijtmans@users.sf.net> + +	* win/tclWinFile.c: [Bug 3388350] mingw64 compiler warnings +  2012-03-11  Donal K. Fellows  <dkf@users.sf.net>  	* doc/*.n, doc/*.3: A number of small spelling and wording fixes. diff --git a/win/tclWinFile.c b/win/tclWinFile.c index 331d65a..6e7b4c2 100644 --- a/win/tclWinFile.c +++ b/win/tclWinFile.c @@ -1588,9 +1588,9 @@ NativeAccess(      {  	SECURITY_DESCRIPTOR *sdPtr = NULL;  	unsigned long size; -	SID *pSid = 0; +	PSID pSid = 0;  	BOOL SidDefaulted; -	SID_IDENTIFIER_AUTHORITY samba_unmapped = { 0, 0, 0, 0, 0, 22 }; +	SID_IDENTIFIER_AUTHORITY samba_unmapped = {{0, 0, 0, 0, 0, 22}};  	GENERIC_MAPPING genMap;  	HANDLE hToken = NULL;  	DWORD desiredAccess = 0, grantedAccess = 0;  | 
