Skip to content

Commit 67bf217

Browse files
committed
remove ArgvOptions from public API
1 parent c75be30 commit 67bf217

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

getargv.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import "unsafe"
1616
type (
1717
Argv = C.struct_ArgvResult
1818
ArgvArgc = C.struct_ArgvArgcResult
19-
ArgvOptions = C.struct_GetArgvOptions
19+
argvOptions = C.struct_GetArgvOptions
2020
pid_t = uint
2121
)
2222

@@ -26,7 +26,7 @@ func p2i(p *C.char) uintptr {
2626

2727
func getArgv(pid pid_t, skip uint, nuls bool) (*Argv, error) {
2828
r := new(Argv)
29-
o := ArgvOptions{
29+
o := argvOptions{
3030
skip: C.uint(skip),
3131
pid: C.pid_t(pid),
3232
nuls: C.bool(nuls),

0 commit comments

Comments
 (0)