]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
Fix build failure due to slightly different rmdir
authorStéphane Graber <stgraber@ubuntu.com>
Mon, 22 Sep 2014 22:21:47 +0000 (18:21 -0400)
committerStéphane Graber <stgraber@ubuntu.com>
Mon, 22 Sep 2014 22:21:47 +0000 (18:21 -0400)
Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
src/lxc/conf.c

index b0b8603e03ed0732ebbb85d9cc87c3de396d592b..b4ee277c3e8bb8c9428a5f094e8fb4c691f79b9f 100644 (file)
@@ -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" );
        }