Skip to content

Commit

Permalink
Fix build failure due to slightly different rmdir
Browse files Browse the repository at this point in the history
Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
  • Loading branch information
stgraber committed Sep 22, 2014
1 parent 68b2fa1 commit dca9236
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lxc/conf.c
Expand Up @@ -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" );
}

Expand Down

0 comments on commit dca9236

Please sign in to comment.