Commit 95db7d8c by Josh Soref

spelling: initialize

Signed-off-by: 's avatarJosh Soref <jsoref@gmail.com>
parent aa899945
...@@ -63,7 +63,7 @@ struct lxc_list { ...@@ -63,7 +63,7 @@ struct lxc_list {
for (__iterator = (__list)->next, __next = __iterator->next; \ for (__iterator = (__list)->next, __next = __iterator->next; \
__iterator != __list; __iterator = __next, __next = __next->next) __iterator != __list; __iterator = __next, __next = __next->next)
/* Initalize list. */ /* Initialize list. */
static inline void lxc_list_init(struct lxc_list *list) static inline void lxc_list_init(struct lxc_list *list)
{ {
list->elem = NULL; list->elem = NULL;
......
...@@ -640,7 +640,7 @@ static int _lxc_log_set_file(const char *name, const char *lxcpath, int create_d ...@@ -640,7 +640,7 @@ static int _lxc_log_set_file(const char *name, const char *lxcpath, int create_d
/* /*
* lxc_log_init: * lxc_log_init:
* Called from lxc front-end programs (like lxc-create, lxc-start) to * Called from lxc front-end programs (like lxc-create, lxc-start) to
* initalize the log defaults. * initialize the log defaults.
*/ */
int lxc_log_init(struct lxc_log *log) int lxc_log_init(struct lxc_log *log)
{ {
......
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