playlistfs: fix playc chan type (thanks mischief)

This commit is contained in:
cinap_lenrek 2017-02-15 08:53:31 +01:00
parent f2d2f9374b
commit b61799df43

View file

@ -356,7 +356,7 @@ playinit(void)
for(i = 0; i < NSparebuf; i++)
sendp(spare, malloc(sizeof(Pacbuf)));
playc = chancreate(sizeof(Pmsg), 1);
playc = chancreate(sizeof(ulong), 1);
procrfork(decproc, nil, 32*1024, RFFDG);
procrfork(pcmproc, nil, 32*1024, RFFDG);
}