peak_usb: fix clang build warning
Clang points out undefined behavior when building the pcan_usb_pro driver: drivers/net/can/usb/peak_usb/pcan_usb_pro.c:136:15: error: passing an object that undergoes default argument promotion to 'va_start' has undefined behavior [-Werror,-Wvarargs] Changing the function prototype to avoid argument promotion in the varargs call avoids the warning, and should make this well-defined. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Reviewed-by: Nathan Chancellor <natechancellor@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ae9819e339
commit
a2ae6da025
@ -127,7 +127,7 @@ static u8 *pcan_msg_init_empty(struct pcan_usb_pro_msg *pm,
|
|||||||
/*
|
/*
|
||||||
* add one record to a message being built
|
* add one record to a message being built
|
||||||
*/
|
*/
|
||||||
static int pcan_msg_add_rec(struct pcan_usb_pro_msg *pm, u8 id, ...)
|
static int pcan_msg_add_rec(struct pcan_usb_pro_msg *pm, int id, ...)
|
||||||
{
|
{
|
||||||
int len, i;
|
int len, i;
|
||||||
u8 *pc;
|
u8 *pc;
|
||||||
|
Loading…
Reference in New Issue
Block a user