[process]darwin: forget to change as binary.go movement.

This commit is contained in:
Shirou WAKAYAMA 2016-02-12 23:53:53 +09:00
parent 0af91ba32b
commit e21c97d3b2
1 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ package process
import (
"bytes"
"encoding/binary"
"fmt"
"os/exec"
"strconv"
@ -362,7 +363,7 @@ func parseKinfoProc(buf []byte) (KinfoProc, error) {
var k KinfoProc
br := bytes.NewReader(buf)
err := Read(br, LittleEndian, &k)
err := common.Read(br, binary.LittleEndian, &k)
if err != nil {
return k, err
}