summaryrefslogtreecommitdiff
path: root/include/git2/apply.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/git2/apply.h')
-rw-r--r--include/git2/apply.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/git2/apply.h b/include/git2/apply.h
index bc637df1c..814bc8f16 100644
--- a/include/git2/apply.h
+++ b/include/git2/apply.h
@@ -59,7 +59,7 @@ typedef enum {
* Don't actually make changes, just test that the patch applies.
* This is the equivalent of `git apply --check`.
*/
- GIT_APPLY_CHECK = (1 << 0),
+ GIT_APPLY_CHECK = (1 << 0)
} git_apply_flags_t;
/**
@@ -127,7 +127,7 @@ typedef enum {
* Apply the patch to both the working directory and the index.
* This is the equivalent of `git apply --index`.
*/
- GIT_APPLY_LOCATION_BOTH = 2,
+ GIT_APPLY_LOCATION_BOTH = 2
} git_apply_location_t;
/**