We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6f3c62f + 93ba3a7 commit e1fcb18Copy full SHA for e1fcb18
events/equeue/equeue.c
@@ -24,7 +24,7 @@
24
// calculate the relative-difference between absolute times while
25
// correctly handling overflow conditions
26
static inline int equeue_tickdiff(unsigned a, unsigned b) {
27
- return (int)(a - b);
+ return (int)(unsigned)(a - b);
28
}
29
30
// calculate the relative-difference between absolute times, but
0 commit comments