From: Josh Soref Date: Tue, 30 Oct 2018 06:45:18 +0000 (+0000) Subject: spelling: allocate X-Git-Tag: lxc-3.1.0~26^2~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54d423b87459df9712595c0afa94f5742d57eddd;p=thirdparty%2Flxc.git spelling: allocate Signed-off-by: Josh Soref --- 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);