From: Stéphane Graber Date: Tue, 5 Jun 2018 21:13:57 +0000 (-0400) Subject: Fix typo X-Git-Tag: lxc-3.1.0~268^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46210729c591eaa7a5c1f1395b63f15c6d2e7e67;p=thirdparty%2Flxc.git Fix typo Signed-off-by: Stéphane Graber --- diff --git a/src/lxc/utils.c b/src/lxc/utils.c index 04f179821..cd5edd6ab 100644 --- a/src/lxc/utils.c +++ b/src/lxc/utils.c @@ -2239,7 +2239,7 @@ int run_command(char *buf, size_t buf_size, int (*child_fn)(void *), void *args) int ret, fret, pipefd[2]; ssize_t bytes; - /* Make sure our callers do not receive unitialized memory. */ + /* Make sure our callers do not receive uninitialized memory. */ if (buf_size > 0 && buf) buf[0] = '\0';