You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[IPX]: Correct return type of ipx_map_frame_type().
Casting BE16 to int and back may or may not work. Correct, to be sure. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
53d42f5412
commit
4ac396c046
+2
-2
@@ -944,9 +944,9 @@ out:
|
||||
return rc;
|
||||
}
|
||||
|
||||
static int ipx_map_frame_type(unsigned char type)
|
||||
static __be16 ipx_map_frame_type(unsigned char type)
|
||||
{
|
||||
int rc = 0;
|
||||
__be16 rc = 0;
|
||||
|
||||
switch (type) {
|
||||
case IPX_FRAME_ETHERII: rc = htons(ETH_P_IPX); break;
|
||||
|
||||
Reference in New Issue
Block a user