From dca9236e03957c22eacbe3fa963adf505bb145a3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?St=C3=A9phane=20Graber?= Date: Mon, 22 Sep 2014 18:21:47 -0400 Subject: [PATCH] Fix build failure due to slightly different rmdir MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Graber --- src/lxc/conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lxc/conf.c b/src/lxc/conf.c index b0b8603e0..b4ee277c3 100644 --- a/src/lxc/conf.c +++ b/src/lxc/conf.c @@ -1575,7 +1575,7 @@ int lxc_delete_autodev(struct lxc_handler *handler) /* Do the cleanup */ INFO("Cleaning %s", tmp_path ); - if ( 0 != lxc_rmdir_onedev(tmp_path, NULL) ) { + if ( 0 != lxc_rmdir_onedev(tmp_path) ) { ERROR("Failed to cleanup autodev" ); } -- 2.47.2