summaryrefslogtreecommitdiff
path: root/lib/libc/src/strlen.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/src/strlen.c')
-rw-r--r--lib/libc/src/strlen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/src/strlen.c b/lib/libc/src/strlen.c
index ba6c612d..ffcf5eed 100644
--- a/lib/libc/src/strlen.c
+++ b/lib/libc/src/strlen.c
@@ -19,7 +19,7 @@ PL_strlen(const char *str)
/* error checking in case we have a 64-bit platform -- make sure
* we don't have ultra long strings that overflow an int32
- */
+ */
if( sizeof(PRUint32) < sizeof(size_t) )
{
if( l > PR_INT32_MAX )