commit | 07bbeaf12310263d808b1958f8413b95f98786ea | [log] [tgz] |
---|---|---|
author | Linus Torvalds <torvalds@g5.osdl.org> | Wed Jul 06 13:05:50 2005 -0700 |
committer | Linus Torvalds <torvalds@g5.osdl.org> | Wed Jul 06 13:05:50 2005 -0700 |
tree | 5a739fb75f8e14b8c5f2274d8f1efa6fed145b34 | |
parent | 184f6eb8c46afc2a4aa6cb7c51ebc423c36d9c9d [diff] |
ieee1394: fix broken signed char assumption. "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.