summaryrefslogtreecommitdiff
path: root/stash.go
diff options
context:
space:
mode:
authorlhchavez <[email protected]>2020-02-13 02:50:31 +0000
committerlhchavez <[email protected]>2020-02-13 02:50:31 +0000
commit150a8c60169ee69f4a869acbc10dbe097274605a (patch)
treeccadf6203e85d60bfa8d6221dd94ff470f9a66f3 /stash.go
parentb201c503ab5788b2ce5511fa75792127e27e254c (diff)
parent75c5e41422f224a6fde40903c4af4cf1afbd2d46 (diff)
Merge remote-tracking branch 'origin/master' into actions
Diffstat (limited to 'stash.go')
-rw-r--r--stash.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/stash.go b/stash.go
index 8743da8..6624bce 100644
--- a/stash.go
+++ b/stash.go
@@ -171,7 +171,7 @@ func (opts *StashApplyOptions) toC() (
optsC = &C.git_stash_apply_options{
version: C.GIT_STASH_APPLY_OPTIONS_VERSION,
- flags: C.git_stash_apply_flags(opts.Flags),
+ flags: C.uint32_t(opts.Flags),
}
populateCheckoutOpts(&optsC.checkout_options, &opts.CheckoutOptions)
if opts.ProgressCallback != nil {