Codebase list golang-github-go-piv-piv-go / 1902689
piv/pcsc_freebsd.go: fix build on 32 bit FreeBSD Fixes #104 Robert Clausecker authored 1 year, 8 months ago Eric Chiang committed 1 year, 8 months ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
2525 }
2626
2727 func isRCNoReaders(rc C.long) bool {
28 return rc == 0x8010002E
28 return uint32(rc) == 0x8010002E
2929 }