CVS commit: src/sys/arch/x86/x86
"Robert Elz" <[email protected]>
| Newsgroups | gmane.os.netbsd.devel.cvs |
|---|---|
| Message-ID | <[email protected]> |
Module Name: src Committed By: kre Date: Wed Apr 29 16:29:59 UTC 2026 Modified Files: src/sys/arch/x86/x86: via_padlock.c Log Message: Update to match recent cryptodev update <opencrypto/cryptodev.h> recently changed a bunch of fields from signed to unsigned. To avoid gcc stupidly complaining about comparisons of different signedness ints (I mean, how can for (i = 0; i < unsigned_thing; i++) ever see i become negative?) change i from int to unsigned int. Should fix the i386 build. To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 src/sys/arch/x86/x86/via_padlock.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.