ieee1394: fix broken signed char assumption.
authorLinus Torvalds <torvalds@g5.osdl.org>
Wed, 6 Jul 2005 20:05:50 +0000 (13:05 -0700)
committerLinus Torvalds <torvalds@g5.osdl.org>
Wed, 6 Jul 2005 20:05:50 +0000 (13:05 -0700)
"ack_code" is assigned (and tested against) negative numbers, but was
declared as "char".  Which only works if "char" is signed - which it
necessarily isn't.

So make that signedness assumption specific.


No differences found