diff --git a/src/lxc/string_utils.h b/src/lxc/string_utils.h index d289d18e0..4065e4e6b 100644 --- a/src/lxc/string_utils.h +++ b/src/lxc/string_utils.h @@ -101,7 +101,7 @@ __attribute__((sentinel)) extern char *must_append_path(char *first, ...); /* Return copy of string @entry. Do not fail. */ extern char *must_copy_string(const char *entry); -/* Re-alllocate a pointer, do not fail */ +/* Re-allocate a pointer, do not fail */ extern void *must_realloc(void *orig, size_t sz); extern int lxc_char_left_gc(const char *buffer, size_t len); diff --git a/src/lxc/utils.h b/src/lxc/utils.h index bc298acc8..6314b7985 100644 --- a/src/lxc/utils.h +++ b/src/lxc/utils.h @@ -211,7 +211,7 @@ __attribute__((sentinel)) extern char *must_append_path(char *first, ...); /* return copy of string @entry; do not fail. */ extern char *must_copy_string(const char *entry); -/* Re-alllocate a pointer, do not fail */ +/* Re-allocate a pointer, do not fail */ extern void *must_realloc(void *orig, size_t sz); extern bool lxc_nic_exists(char *nic);