From: Stéphane Graber Date: Mon, 22 Sep 2014 22:21:47 +0000 (-0400) Subject: Fix build failure due to slightly different rmdir X-Git-Tag: lxc-1.0.6~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dca9236e03957c22eacbe3fa963adf505bb145a3;p=thirdparty%2Flxc.git Fix build failure due to slightly different rmdir Signed-off-by: Stéphane Graber --- 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" ); }