diff options
author | Peter J. Acklam) (via RT <perlbug-followup@perl.org> | 2011-01-06 23:13:20 -0800 |
---|---|---|
committer | Abigail <abigail@abigail.be> | 2011-01-07 11:55:09 +0100 |
commit | 2391436bbf4354ce0b989d587889b6ac7ca73c82 (patch) | |
tree | 69f7eaa40eec17c805fb5a0390102e69691eebeb /os2/os2.c | |
parent | af1e27efa1b782b1fcafdb20c1c0bd45239dcd0a (diff) | |
download | perl-2391436bbf4354ce0b989d587889b6ac7ca73c82.tar.gz |
Fix typos (spelling errors) in os2/*.
# New Ticket Created by (Peter J. Acklam)
# Please include the string: [perl #81900]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=81900 >
Signed-off-by: Abigail <abigail@abigail.be>
Diffstat (limited to 'os2/os2.c')
-rw-r--r-- | os2/os2.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3720,7 +3720,7 @@ fill_extLibpath(int type, char *pre, char *post, int replace, char *msg) s = pre - 1; while (*++s) if (*s == '/') - *s = '\\'; /* Be extra causious */ + *s = '\\'; /* Be extra cautious */ memcpy(to, pre, l); if (!l || to[l-1] != ';') to[l++] = ';'; @@ -3751,7 +3751,7 @@ fill_extLibpath(int type, char *pre, char *post, int replace, char *msg) s = post - 1; while (*++s) if (*s == '/') - *s = '\\'; /* Be extra causious */ + *s = '\\'; /* Be extra cautious */ memcpy(to, post, l); if (!l || to[l-1] != ';') to[l++] = ';'; |