diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-08-11 13:47:04 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-08-11 13:47:04 (GMT) |
| commit | dfcc8ce6e5c8b91079348f4554ce76ff537dd1be (patch) | |
| tree | b83255cf5412c753da0faa1c20d905c25fdf60f8 /unix/tclUnixFile.c | |
| parent | 1ba4ad76b3abf67834ed39e7f20199104298b794 (diff) | |
| parent | b3f8c269fa4910edabe381bf6ec17ecdb2bb19e1 (diff) | |
| download | tcl-dfcc8ce6e5c8b91079348f4554ce76ff537dd1be.zip tcl-dfcc8ce6e5c8b91079348f4554ce76ff537dd1be.tar.gz tcl-dfcc8ce6e5c8b91079348f4554ce76ff537dd1be.tar.bz2 | |
Merge 8.7
Diffstat (limited to 'unix/tclUnixFile.c')
| -rw-r--r-- | unix/tclUnixFile.c | 2 |
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; |
