Hi, On Thu, Jan 24, 2002 at 08:12:53AM +0100, Karsten Festag wrote: > I'll split > bit = ++bit % 8; > in the two lines > bit = ++bit; > bit %= 8; > > in microtek2.c > > Henning, could you do this for me in CVS?
I don't thin that this makes any difference. ++bit; bit %= 8; should work. Or the solution provided by Tim. Bye, Henning