Merge pull request #1003 from ajacoutot/v3-process-openbsd

v3/process: unbreak on OpenBSD
This commit is contained in:
Lomanic 2020-11-29 15:05:56 +01:00 committed by GitHub
commit ca10f91f44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,7 @@ func (p *Process) MemoryInfoWithContext(ctx context.Context) (*MemoryInfoStat, e
if err != nil {
return nil, err
}
pageSize, err := mem.GetpageSizeWithContext(ctx)
pageSize, err := mem.GetPageSizeWithContext(ctx)
if err != nil {
return nil, err
}