spelling: allocate

Signed-off-by: Josh Soref <jsoref@gmail.com>
This commit is contained in:
Josh Soref 2018-10-30 06:45:18 +00:00
parent f8f1069a8d
commit 54d423b874
2 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ __attribute__((sentinel)) extern char *must_append_path(char *first, ...);
/* Return copy of string @entry. Do not fail. */ /* Return copy of string @entry. Do not fail. */
extern char *must_copy_string(const char *entry); 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 void *must_realloc(void *orig, size_t sz);
extern int lxc_char_left_gc(const char *buffer, size_t len); extern int lxc_char_left_gc(const char *buffer, size_t len);

View File

@ -211,7 +211,7 @@ __attribute__((sentinel)) extern char *must_append_path(char *first, ...);
/* return copy of string @entry; do not fail. */ /* return copy of string @entry; do not fail. */
extern char *must_copy_string(const char *entry); 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 void *must_realloc(void *orig, size_t sz);
extern bool lxc_nic_exists(char *nic); extern bool lxc_nic_exists(char *nic);