summaryrefslogtreecommitdiff
path: root/strings/apr_strings.c
diff options
context:
space:
mode:
Diffstat (limited to 'strings/apr_strings.c')
-rw-r--r--strings/apr_strings.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/strings/apr_strings.c b/strings/apr_strings.c
index 2519f95b9..ad8c05508 100644
--- a/strings/apr_strings.c
+++ b/strings/apr_strings.c
@@ -160,7 +160,7 @@ APR_DECLARE_NONSTD(char *) apr_pstrcat(apr_pool_t *a, ...)
else {
len = strlen(argp);
}
-
+
memcpy(cp, argp, len);
cp += len;
}
@@ -196,7 +196,7 @@ APR_DECLARE(char *) apr_pstrcatv(apr_pool_t *a, const struct iovec *vec,
/* Allocate the required string */
res = (char *) apr_palloc(a, len + 1);
-
+
/* Pass two --- copy the argument strings into the result space */
src = vec;
dst = res;
@@ -325,7 +325,7 @@ APR_DECLARE(apr_int64_t) apr_strtoi64(const char *nptr, char **endptr, int base)
* in both the mult and add/sub operation. Unlike the bsd impl,
* we also work strictly in a signed int64 word as we haven't
* implemented the unsigned type in win32.
- *
+ *
* Set 'any' if any `digits' consumed; make it negative to indicate
* overflow.
*/
@@ -352,7 +352,7 @@ APR_DECLARE(apr_int64_t) apr_strtoi64(const char *nptr, char **endptr, int base)
else if (c >= 's' && c <= 'z')
c -= 'z' - 28;
#else
-#error "CANNOT COMPILE apr_strtoi64(), only ASCII and EBCDIC supported"
+#error "CANNOT COMPILE apr_strtoi64(), only ASCII and EBCDIC supported"
#endif
else
break;