mirror of
https://gitlab.com/niansa/cosched.git
synced 2025-03-06 20:53:26 +01:00
Fixed priority being unsigned
This commit is contained in:
parent
666a9aee3f
commit
e38e792adc
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ namespace CoSched {
|
|||
using namespace basiccoro;
|
||||
|
||||
|
||||
using Priority = uint8_t;
|
||||
using Priority = int8_t;
|
||||
enum {
|
||||
PRIO_LOWEST = -99,
|
||||
PRIO_LOW = -20,
|
||||
|
|
Loading…
Add table
Reference in a new issue