diff options
author | nijtmans <nijtmans> | 2010-11-04 21:48:23 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-11-04 21:48:23 (GMT) |
commit | 259ada8fb281493b125e0b1560f2747fa91209bf (patch) | |
tree | eca4cf58389348cf58a44d588d60ff77e45cbcba /win/tclWin32Dll.c | |
parent | ebb0221fdd2b89c2af2d5ee05d235debb5f0bb72 (diff) | |
download | tcl-259ada8fb281493b125e0b1560f2747fa91209bf.zip tcl-259ada8fb281493b125e0b1560f2747fa91209bf.tar.gz tcl-259ada8fb281493b125e0b1560f2747fa91209bf.tar.bz2 |
[FRQ 491789]: "setargv() doesn't support a unicode cmdline" implemented for Tcl on MSVC++
Diffstat (limited to 'win/tclWin32Dll.c')
-rw-r--r-- | win/tclWin32Dll.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWin32Dll.c b/win/tclWin32Dll.c index 9b8ec13..98cfa85 100644 --- a/win/tclWin32Dll.c +++ b/win/tclWin32Dll.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWin32Dll.c,v 1.69 2010/10/12 10:21:55 nijtmans Exp $ + * RCS: @(#) $Id: tclWin32Dll.c,v 1.70 2010/11/04 21:48:23 nijtmans Exp $ */ #include "tclWinInt.h" @@ -522,7 +522,7 @@ TclWinDriveLetterForVolMountPoint( */ Tcl_MutexUnlock(&mountPointMap); - return dlIter->driveLetter; + return (char) dlIter->driveLetter; } } @@ -602,7 +602,7 @@ TclWinDriveLetterForVolMountPoint( dlIter = dlIter->nextPtr) { if (_tcscmp(dlIter->volumeName, mountPoint) == 0) { Tcl_MutexUnlock(&mountPointMap); - return dlIter->driveLetter; + return (char) dlIter->driveLetter; } } |