From 920db6c10e200a3734e52101ee9fb5f1ea775763 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sun, 15 Jun 2025 00:29:09 -0500 Subject: [PATCH] Update: The Featureless Make needs recurse callback. The recurse callback function parameter changed from `uint32_t` to `uint64_t`. --- level_3/fake/c/main/fake/do.c | 4 ++-- level_3/fake/c/main/fake/do.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/level_3/fake/c/main/fake/do.c b/level_3/fake/c/main/fake/do.c index c95dc9a..4cbd429 100644 --- a/level_3/fake/c/main/fake/do.c +++ b/level_3/fake/c/main/fake/do.c @@ -5,7 +5,7 @@ extern "C" { #endif #ifndef _di_fake_do_copy_action_ - void fake_do_copy_action(f_directory_recurse_do_t * const recurse, const f_string_static_t name, const uint32_t flag) { + void fake_do_copy_action(f_directory_recurse_do_t * const recurse, const f_string_static_t name, const uint64_t flag) { if (!recurse || !recurse->state.custom) return; @@ -144,7 +144,7 @@ extern "C" { #endif // _di_fake_do_copy_action_ #ifndef _di_fake_do_copy_handle_ - void fake_do_copy_handle(f_directory_recurse_do_t * const recurse, const f_string_static_t name, const uint32_t flag) { + void fake_do_copy_handle(f_directory_recurse_do_t * const recurse, const f_string_static_t name, const uint64_t flag) { if (!recurse || !recurse->state.custom || F_status_set_fine(recurse->state.status) == F_interrupt) return; diff --git a/level_3/fake/c/main/fake/do.h b/level_3/fake/c/main/fake/do.h index 6e687b3..c5c6300 100644 --- a/level_3/fake/c/main/fake/do.h +++ b/level_3/fake/c/main/fake/do.h @@ -60,7 +60,7 @@ extern "C" { * @see fake_build_copy() */ #ifndef _di_fake_do_copy_action_ - extern void fake_do_copy_action(f_directory_recurse_do_t * const recurse, const f_string_static_t name, const uint32_t flag); + extern void fake_do_copy_action(f_directory_recurse_do_t * const recurse, const f_string_static_t name, const uint64_t flag); #endif // _di_fake_do_copy_action_ /** @@ -87,7 +87,7 @@ extern "C" { * The flags representing the action. */ #ifndef _di_fake_do_copy_handle_ - extern void fake_do_copy_handle(f_directory_recurse_do_t * const recurse, const f_string_static_t name, const uint32_t flag); + extern void fake_do_copy_handle(f_directory_recurse_do_t * const recurse, const f_string_static_t name, const uint64_t flag); #endif // _di_fake_do_copy_handle_ #ifdef __cplusplus -- 1.8.3.1