mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
szip: use &zip
instead of *zip
(#2301)
This commit is contained in:
parent
1e121d36a4
commit
5ef2c947f7
@ -6,7 +6,7 @@ module szip
|
|||||||
#include "zip.h"
|
#include "zip.h"
|
||||||
|
|
||||||
type zip C.zip_t
|
type zip C.zip_t
|
||||||
type zip_ptr *zip
|
type zip_ptr &zip
|
||||||
|
|
||||||
// Ref - miniz.h
|
// Ref - miniz.h
|
||||||
const (
|
const (
|
||||||
@ -283,4 +283,3 @@ pub fn (zentry mut zip_ptr) total() ?int {
|
|||||||
}
|
}
|
||||||
return _tentry
|
return _tentry
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user