diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-10 12:17:50 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-10 12:17:50 (GMT) |
commit | c69d9fda477d73e88273b55ef9e129a7e0ee8690 (patch) | |
tree | db37720fccfd72b72c1f9d7e89510c0d7406cbad /generic/tclFileName.c | |
parent | 20e0998a323f571ddb5f5aaf9789dcc8fa6b06b7 (diff) | |
download | tcl-c69d9fda477d73e88273b55ef9e129a7e0ee8690.zip tcl-c69d9fda477d73e88273b55ef9e129a7e0ee8690.tar.gz tcl-c69d9fda477d73e88273b55ef9e129a7e0ee8690.tar.bz2 |
Potential fix for [ed5be77734]: win: "comx:" not recognized as serial port.
(concluded from code inspection, not tested yet)
Diffstat (limited to 'generic/tclFileName.c')
-rw-r--r-- | generic/tclFileName.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclFileName.c b/generic/tclFileName.c index 15f93f4..cfd76e6 100644 --- a/generic/tclFileName.c +++ b/generic/tclFileName.c @@ -242,7 +242,7 @@ ExtractWinRoot( if (path[4] == '\0') { abs = 4; - } else if (path [4] == ':' && path[5] == '\0') { + } else if (path[4] == ':' && path[5] == '\0') { abs = 5; } @@ -264,7 +264,7 @@ ExtractWinRoot( if (path[4] == '\0') { abs = 4; - } else if (path [4] == ':' && path[5] == '\0') { + } else if (path[4] == ':' && path[5] == '\0') { abs = 5; } } |