X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=client%2Fspec.c;h=825e89479aef571a205d8ae82b845df92b3274bc;hb=be3f747f775c05facb8a34cf0baba523401b88fb;hp=762eedcd14f4cb1fe78209db6b52863f9795eb9c;hpb=0ee062ed97dfb8f4877166654a5f5e7ded317cf6;p=mTask.git diff --git a/client/spec.c b/client/spec.c index 762eedc..825e894 100644 --- a/client/spec.c +++ b/client/spec.c @@ -4,8 +4,11 @@ void spec_send(void) { + debug("Writing spec"); write_byte('c'); - write_byte(0 | HAVELED << 0 | HAVEAIO << 1 | HAVEDIO << 2); + write_byte(0 | (HAVELED << 0) | (HAVEAIO << 1) | (HAVEDIO << 2)); write16(MAXTASKS); write16(MAXSDSS); + write_byte('\n'); + debug("Done writing spec"); }