aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Riehs <tristan.riehs@inria.fr>2026-01-25 17:56:08 +0100
committerTristan Riehs <tristan.riehs@inria.fr>2026-01-25 17:56:08 +0100
commit85b581aa94f8c99edb4ce8c9a021752fe81f5343 (patch)
tree734d8002ae50c40d955f43bd15ee5ad7b24f0c3b
parentd37b6447fa2ca6fd11fbb8bc798f06a475060e53 (diff)
Fix organization of detection routines
-rw-r--r--src/main.c8
1 files changed, 7 insertions, 1 deletions
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 **)