diff options
| author | ac79b0c6 <[email protected]> | 2022-05-20 18:25:27 +0800 |
|---|---|---|
| committer | ac79b0c6 <[email protected]> | 2022-05-20 18:25:27 +0800 |
| commit | f0a430489132afb5c7e98cbaa404e7ca70de978b (patch) | |
| tree | 3017544f46435cb4906063ddc5e7de3c4535733f /mkvlib/c | |
| parent | 5ccf93af9411e35aa078856d08987f6dcd9b62d7 (diff) | |
update mkvlib:fix bug
Diffstat (limited to 'mkvlib/c')
| -rw-r--r-- | mkvlib/c/exports.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mkvlib/c/exports.go b/mkvlib/c/exports.go index 94e96ee..32c21af 100644 --- a/mkvlib/c/exports.go +++ b/mkvlib/c/exports.go @@ -216,11 +216,11 @@ func GetFontInfo(p *C.char) *C.char { } //export NOverwrite -func NOverwrite(o bool) { +func NOverwrite(n bool) { if !checkInstance() { return } - getter.GetProcessorInstance().NOverwrite(o) + getter.GetProcessorInstance().NOverwrite(n) } //export Version |
