From 85b581aa94f8c99edb4ce8c9a021752fe81f5343 Mon Sep 17 00:00:00 2001 From: Tristan Riehs Date: Sun, 25 Jan 2026 17:56:08 +0100 Subject: Fix organization of detection routines --- src/main.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index e21f7b1..f5e36c2 100644 --- a/src/main.c +++ b/src/main.c @@ -1121,13 +1121,19 @@ static int ftag_sync_is_remote_newer(void) return ftag_sync_compare_mtimes() < 0; } -static void ftag_sync_pull(int argc, char **argv) +static void ftag_sync_pull(void) { if (!ftag_sync_is_remote_newer()) return; /* TODO: resume here */ } +static void ftag_sync(int argc, char **argv) +{ + (void) argc; + (void) argv; +} + /* Check that the tag we are trying to create does not exist yet. If this * callback is ever called, then it already exist, this is a fatal error. */ static int ftag_tag_check(void *, int, char **cols, char **) -- cgit v1.2.3