aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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 **)