summaryrefslogtreecommitdiff
path: root/caretx.c
diff options
context:
space:
mode:
authorTony Cook <tony@develop-help.com>2014-07-28 11:46:19 +1000
committerTony Cook <tony@develop-help.com>2014-07-28 11:46:19 +1000
commite2ac4e88753491bc5b4b2f8ae307bb01a42a78f8 (patch)
tree1306907e9e3652694ef1750b42ce31c40fb9c250 /caretx.c
parent51b468f688a3660c4842b9e634c5fe58a2196307 (diff)
downloadperl-e2ac4e88753491bc5b4b2f8ae307bb01a42a78f8.tar.gz
spell "SSize_t" correctly
the same as the other place in that patch
Diffstat (limited to 'caretx.c')
-rw-r--r--caretx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/caretx.c b/caretx.c
index dffa445b3b..5d3318c6d1 100644
--- a/caretx.c
+++ b/caretx.c
@@ -99,7 +99,7 @@ Perl_set_caret_X(pTHX) {
}
# elif defined(HAS_PROCSELFEXE)
char buf[MAXPATHLEN];
- Ssize_t len = readlink(PROCSELFEXE_PATH, buf, sizeof(buf) - 1);
+ SSize_t len = readlink(PROCSELFEXE_PATH, buf, sizeof(buf) - 1);
/* NOTE: if the length returned by readlink() is sizeof(buf) - 1,
* it is impossible to know whether the result was truncated. */