git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
184f6eb
)
ieee1394: fix broken signed char assumption.
author
Linus Torvalds
<torvalds@g5.osdl.org>
Wed, 6 Jul 2005 20:05:50 +0000
(13:05 -0700)
committer
Linus 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