diff options
author | nijtmans <nijtmans> | 2010-03-20 12:00:41 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-03-20 12:00:41 (GMT) |
commit | ebf2f83895304cba3d46bd0714bc6e1cf38fbe83 (patch) | |
tree | a5700ee719d9e09731568ff8ae92857aa9bb0aff /win/tclWinPipe.c | |
parent | 9d6f5201163bb582aa7e121e4c8b9799ec415479 (diff) | |
download | tcl-ebf2f83895304cba3d46bd0714bc6e1cf38fbe83.zip tcl-ebf2f83895304cba3d46bd0714bc6e1cf38fbe83.tar.gz tcl-ebf2f83895304cba3d46bd0714bc6e1cf38fbe83.tar.bz2 |
stub16.c Don't hide that we use the ASCII API here.
tclWinPipe.c 2 unnecessary type casts.
Diffstat (limited to 'win/tclWinPipe.c')
-rw-r--r-- | win/tclWinPipe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWinPipe.c b/win/tclWinPipe.c index a625ae8..2ee7310 100644 --- a/win/tclWinPipe.c +++ b/win/tclWinPipe.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinPipe.c,v 1.77 2010/03/07 14:39:25 nijtmans Exp $ + * RCS: @(#) $Id: tclWinPipe.c,v 1.78 2010/03/20 12:00:42 nijtmans Exp $ */ #include "tclWinInt.h" @@ -1505,9 +1505,9 @@ ApplicationType( * application name from the arguments. */ - tclWinProcs->getShortPathNameProc((TCHAR *) nativeFullPath, + tclWinProcs->getShortPathNameProc(nativeFullPath, nativeFullPath, MAX_PATH); - strcpy(fullName, tclWinProcs->tchar2utf((TCHAR *) nativeFullPath, -1, &ds)); + strcpy(fullName, tclWinProcs->tchar2utf(nativeFullPath, -1, &ds)); Tcl_DStringFree(&ds); } return applType; |