예제 #1
0
파일: handle.go 프로젝트: Thibauth/go-alpm
// Get the last pm_error
func (h Handle) LastError() error {
	if h.ptr != nil {
		c_err := C.alpm_errno(h.ptr)
		if c_err != 0 {
			return Error(c_err)
		}
	}
	return nil
}
예제 #2
0
파일: alpm.go 프로젝트: Zirak/pacman-fs
func (hand Handle) Error() error {
	return strerror(C.alpm_errno(hand.ptr))
}