Unverified Commit 56267cde by Josh Soref Committed by Christian Brauner

spelling: allocate

Signed-off-by: 's avatarJosh Soref <jsoref@gmail.com>
parent 9443e2e9
...@@ -101,7 +101,7 @@ __attribute__((sentinel)) extern char *must_append_path(char *first, ...); ...@@ -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);
......
...@@ -210,7 +210,7 @@ __attribute__((sentinel)) extern char *must_append_path(char *first, ...); ...@@ -210,7 +210,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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment