summaryrefslogtreecommitdiffstats
path: root/win/tclWinFCmd.c
diff options
context:
space:
mode:
authorhobbs <hobbs>2000-05-22 23:55:09 (GMT)
committerhobbs <hobbs>2000-05-22 23:55:09 (GMT)
commit9caf7186e45d527b5031810a320ce09766809ea8 (patch)
treefd8b046080cb1dbd25f00e946249bd6937ec7ba5 /win/tclWinFCmd.c
parenteed1781d86e2396a379a40614eb728412b4f964d (diff)
downloadtcl-9caf7186e45d527b5031810a320ce09766809ea8.zip
tcl-9caf7186e45d527b5031810a320ce09766809ea8.tar.gz
tcl-9caf7186e45d527b5031810a320ce09766809ea8.tar.bz2
* win/tclWinFCmd.c: cast cleanup [Bug: 5627]
Diffstat (limited to 'win/tclWinFCmd.c')
-rw-r--r--win/tclWinFCmd.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/win/tclWinFCmd.c b/win/tclWinFCmd.c
index 1597583..bf80bf0 100644
--- a/win/tclWinFCmd.c
+++ b/win/tclWinFCmd.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: tclWinFCmd.c,v 1.7 1999/12/09 14:44:11 hobbs Exp $
+ * RCS: @(#) $Id: tclWinFCmd.c,v 1.8 2000/05/22 23:55:09 hobbs Exp $
*/
#include "tclWinInt.h"
@@ -237,7 +237,7 @@ DoRenameFile(
src = Tcl_WinTCharToUtf((TCHAR *) nativeSrcPath, -1, &srcString);
dst = Tcl_WinTCharToUtf((TCHAR *) nativeDstPath, -1, &dstString);
- if (strncmp(src, dst, Tcl_DStringLength(&srcString)) == 0) {
+ if (strncmp(src, dst, (size_t) Tcl_DStringLength(&srcString)) == 0) {
/*
* Trying to move a directory into itself.
*/
@@ -658,7 +658,7 @@ static int
DoCreateDirectory(
Tcl_DString *pathPtr) /* Pathname of directory to create (native). */
{
- int error;
+ DWORD error;
CONST TCHAR *nativePath;
nativePath = (TCHAR *) Tcl_DStringValue(pathPtr);
@@ -1284,7 +1284,7 @@ GetWinFileAttributes(
return TCL_ERROR;
}
- *attributePtrPtr = Tcl_NewBooleanObj(result & attributeArray[objIndex]);
+ *attributePtrPtr = Tcl_NewBooleanObj((int) (result & attributeArray[objIndex]));
return TCL_OK;
}
@@ -1422,7 +1422,7 @@ ConvertFileNameFormat(
*/
Tcl_WinTCharToUtf(nativeName, -1, &ds);
- newv[i] = ckalloc(Tcl_DStringLength(&ds) + 1);
+ newv[i] = ckalloc((unsigned int) (Tcl_DStringLength(&ds) + 1));
lstrcpyA(newv[i], Tcl_DStringValue(&ds));
Tcl_DStringFree(&ds);
FindClose(handle);