From 0b0957a66109b545ded7332591b4fcb8f7e13fd0 Mon Sep 17 00:00:00 2001 From: nulltoken Date: Mon, 7 May 2012 17:04:06 +0200 Subject: [PATCH] fileops: replace integer usage with more explicit enum in some git_futils_rmdir_r() calls --- tests-clar/repo/discover.c | 2 +- tests-clar/repo/open.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests-clar/repo/discover.c b/tests-clar/repo/discover.c index 6b17d6dba..f1c084146 100644 --- a/tests-clar/repo/discover.c +++ b/tests-clar/repo/discover.c @@ -135,7 +135,7 @@ void test_repo_discover__0(void) ensure_repository_discover(REPOSITORY_ALTERNATE_FOLDER_SUB_SUB, ceiling_dirs, sub_repository_path); ensure_repository_discover(REPOSITORY_ALTERNATE_FOLDER_SUB_SUB_SUB, ceiling_dirs, repository_path); - cl_git_pass(git_futils_rmdir_r(TEMP_REPO_FOLDER, 1)); + cl_git_pass(git_futils_rmdir_r(TEMP_REPO_FOLDER, GIT_DIRREMOVAL_FILES_AND_DIRS)); git_repository_free(repo); git_buf_free(&ceiling_dirs_buf); } diff --git a/tests-clar/repo/open.c b/tests-clar/repo/open.c index 91443e8ae..292466390 100644 --- a/tests-clar/repo/open.c +++ b/tests-clar/repo/open.c @@ -7,7 +7,7 @@ void test_repo_open__cleanup(void) cl_git_sandbox_cleanup(); if (git_path_isdir("alternate")) - git_futils_rmdir_r("alternate", 1); + git_futils_rmdir_r("alternate", GIT_DIRREMOVAL_FILES_AND_DIRS); } void test_repo_open__bare_empty_repo(void) @@ -202,8 +202,8 @@ void test_repo_open__bad_gitlinks(void) cl_git_fail(git_repository_open_ext(&repo, "alternate", 0, NULL)); } - git_futils_rmdir_r("invalid", 1); - git_futils_rmdir_r("invalid2", 1); + git_futils_rmdir_r("invalid", GIT_DIRREMOVAL_FILES_AND_DIRS); + git_futils_rmdir_r("invalid2", GIT_DIRREMOVAL_FILES_AND_DIRS); } #ifdef GIT_WIN32 -- 2.39.5