mirror of
https://github.com/xHyroM/gimi.git
synced 2024-11-10 02:38:06 +01:00
fix: missing semicolon
This commit is contained in:
parent
5312dd135e
commit
7031935db2
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ int cli_command_push(int argc, char **argv) {
|
||||||
|
|
||||||
HANDLE_OPTIONS(argc, argv, "tv",
|
HANDLE_OPTIONS(argc, argv, "tv",
|
||||||
OPTION_WITH_ARG('t', set_tags, &tags)
|
OPTION_WITH_ARG('t', set_tags, &tags)
|
||||||
OPTION_WITH_ARG('v', set_verbose, &verbose))
|
OPTION_WITH_ARG('v', set_verbose, &verbose));
|
||||||
|
|
||||||
char *branch_name = get_current_branch_name();
|
char *branch_name = get_current_branch_name();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue