Skip to content

Commit 24fe33a

Browse files
committed
fix pcap-usb
1 parent 7d92092 commit 24fe33a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pcap-usb-linux-common.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
static inline u_int
3737
u_int_sum(u_int a, u_int b)
3838
{
39-
return (((b) <= UINT_MAX - (b)) ? (a) + (b) : UINT_MAX);
39+
return (((b) <= UINT_MAX - (a)) ? (a) + (b) : UINT_MAX);
4040
}
4141

4242
/*

0 commit comments

Comments
 (0)