From: Josh Soref Date: Tue, 30 Oct 2018 07:13:17 +0000 (+0000) Subject: spelling: initialize X-Git-Tag: lxc-3.1.0~26^2~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95db7d8c5918e309781ca7a66c48665d0e793efd;p=thirdparty%2Flxc.git spelling: initialize Signed-off-by: Josh Soref --- diff --git a/src/lxc/list.h b/src/lxc/list.h index e3d409f2f..2ab9e1f04 100644 --- a/src/lxc/list.h +++ b/src/lxc/list.h @@ -63,7 +63,7 @@ struct lxc_list { for (__iterator = (__list)->next, __next = __iterator->next; \ __iterator != __list; __iterator = __next, __next = __next->next) -/* Initalize list. */ +/* Initialize list. */ static inline void lxc_list_init(struct lxc_list *list) { list->elem = NULL; diff --git a/src/lxc/log.c b/src/lxc/log.c index f240af8ac..71e0618c7 100644 --- a/src/lxc/log.c +++ b/src/lxc/log.c @@ -640,7 +640,7 @@ static int _lxc_log_set_file(const char *name, const char *lxcpath, int create_d /* * lxc_log_init: * 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) {