mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 09:11:07 -04:00
Fix one more misuse of u_long when uint32_t is actually meant.
Submitted by: oliver MFC after: 3 days
This commit is contained in:
parent
5d2e2fcd18
commit
c9d9582d9f
1 changed files with 1 additions and 1 deletions
|
|
@ -570,7 +570,7 @@ struct bktr_softc {
|
|||
int vbiinsert; /* Position for next write into circular buffer */
|
||||
int vbistart; /* Position of last read from circular buffer */
|
||||
int vbisize; /* Number of bytes in the circular buffer */
|
||||
u_long vbi_sequence_number; /* sequence number for VBI */
|
||||
uint32_t vbi_sequence_number; /* sequence number for VBI */
|
||||
int vbi_read_blocked; /* user process blocked on read() from /dev/vbi */
|
||||
struct selinfo vbi_select; /* Data used by select() on /dev/vbi */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue