@@ -, +, @@ [-Werror] DEBUG("created directory for console and tty devices at \%s\"", path); ^ in expansion of macro "DEBUG" at line 1514 --- src/lxc/conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/src/lxc/conf.c +++ a/src/lxc/conf.c @@ -1511,7 +1511,7 @@ static int lxc_setup_ttydir_console(const struct lxc_rootfs *rootfs, SYSERROR("failed with errno %d to create %s", errno, path); return -errno; } - DEBUG("created directory for console and tty devices at \%s\"", path); + DEBUG("created directory for console and tty devices at \"%s\"", path); ret = snprintf(lxcpath, sizeof(lxcpath), "%s/dev/%s/console", rootfs->mount, ttydir); if (ret < 0 || (size_t)ret >= sizeof(lxcpath)) --