1
0
Fork 0
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:
niansa 2023-05-06 10:35:36 +02:00
parent 666a9aee3f
commit e38e792adc

View file

@ -14,7 +14,7 @@ namespace CoSched {
using namespace basiccoro;
using Priority = uint8_t;
using Priority = int8_t;
enum {
PRIO_LOWEST = -99,
PRIO_LOW = -20,