diff options
| author | Tristan Riehs <tristan.riehs@inria.fr> | 2026-01-25 17:56:08 +0100 |
|---|---|---|
| committer | Tristan Riehs <tristan.riehs@inria.fr> | 2026-01-25 17:56:08 +0100 |
| commit | 85b581aa94f8c99edb4ce8c9a021752fe81f5343 (patch) | |
| tree | 734d8002ae50c40d955f43bd15ee5ad7b24f0c3b | |
| parent | d37b6447fa2ca6fd11fbb8bc798f06a475060e53 (diff) | |
Fix organization of detection routines
| -rw-r--r-- | src/main.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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 **) |
