summaryrefslogtreecommitdiff
path: root/lib/replace/replace.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/replace/replace.c')
-rw-r--r--lib/replace/replace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/replace/replace.c b/lib/replace/replace.c
index a14322b8e57..99b18e82590 100644
--- a/lib/replace/replace.c
+++ b/lib/replace/replace.c
@@ -547,7 +547,7 @@ long long int rep_strtoll(const char *str, char **endptr, int base)
if (errno == EINVAL) {
if (base == 0 || (base >1 && base <37)) {
/* Base was ok so it's because we were not
- * able to make the convertion.
+ * able to make the conversion.
* Let's reset errno.
*/
errno = saved_errno;
@@ -583,7 +583,7 @@ unsigned long long int rep_strtoull(const char *str, char **endptr, int base)
if (errno == EINVAL) {
if (base == 0 || (base >1 && base <37)) {
/* Base was ok so it's because we were not
- * able to make the convertion.
+ * able to make the conversion.
* Let's reset errno.
*/
errno = saved_errno;