summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixFile.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-08-11 13:47:04 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-08-11 13:47:04 (GMT)
commitdfcc8ce6e5c8b91079348f4554ce76ff537dd1be (patch)
treeb83255cf5412c753da0faa1c20d905c25fdf60f8 /unix/tclUnixFile.c
parent1ba4ad76b3abf67834ed39e7f20199104298b794 (diff)
parentb3f8c269fa4910edabe381bf6ec17ecdb2bb19e1 (diff)
downloadtcl-dfcc8ce6e5c8b91079348f4554ce76ff537dd1be.zip
tcl-dfcc8ce6e5c8b91079348f4554ce76ff537dd1be.tar.gz
tcl-dfcc8ce6e5c8b91079348f4554ce76ff537dd1be.tar.bz2
Merge 8.7
Diffstat (limited to 'unix/tclUnixFile.c')
-rw-r--r--unix/tclUnixFile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixFile.c b/unix/tclUnixFile.c
index 396fa90..e64e182 100644
--- a/unix/tclUnixFile.c
+++ b/unix/tclUnixFile.c
@@ -729,7 +729,7 @@ TclpGetNativeCwd(
#endif /* USEGETWD */
if ((clientData == NULL) || strcmp(buffer, (const char *) clientData)) {
- char *newCd = (char*)Tcl_Alloc(strlen(buffer) + 1);
+ char *newCd = (char *)Tcl_Alloc(strlen(buffer) + 1);
strcpy(newCd, buffer);
return newCd;