diff options
Diffstat (limited to '')
-rw-r--r-- | g10/test-stubs.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/g10/test-stubs.c b/g10/test-stubs.c index 6cf43a359..c5f2f79b3 100644 --- a/g10/test-stubs.c +++ b/g10/test-stubs.c @@ -493,11 +493,13 @@ tofu_policy_str (enum tofu_policy policy) } void -tofu_begin_batch_update (void) +tofu_begin_batch_update (ctrl_t ctrl) { + (void)ctrl; } void -tofu_end_batch_update (void) +tofu_end_batch_update (ctrl_t ctrl) { + (void)ctrl; } |