diff options
Diffstat (limited to 'src')
| -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 **) |
