diff mbox series

[iproute2] dcb: Fix compilation warning about reallocarray

Message ID 20210222120943.2035-1-roid@nvidia.com
State New
Headers show
Series [iproute2] dcb: Fix compilation warning about reallocarray | expand

Commit Message

Roi Dayan Feb. 22, 2021, 12:09 p.m. UTC
To use reallocarray we need to add bsd/stdlib.h.

dcb_app.c: In function ‘dcb_app_table_push’:
dcb_app.c:68:25: warning: implicit declaration of function ‘reallocarray’; did you mean ‘realloc’?

Fixes: 8e9bed1493f5 ("dcb: Add a subtool for the DCB APP object")
Signed-off-by: Roi Dayan <roid@nvidia.com>
---
 dcb/dcb.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Roi Dayan Feb. 22, 2021, 12:11 p.m. UTC | #1
On 2021-02-22 2:09 PM, Roi Dayan wrote:
> To use reallocarray we need to add bsd/stdlib.h.
> 
> dcb_app.c: In function ‘dcb_app_table_push’:
> dcb_app.c:68:25: warning: implicit declaration of function ‘reallocarray’; did you mean ‘realloc’?
> 
> Fixes: 8e9bed1493f5 ("dcb: Add a subtool for the DCB APP object")
> Signed-off-by: Roi Dayan <roid@nvidia.com>
> ---
>   dcb/dcb.c | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/dcb/dcb.c b/dcb/dcb.c
> index 6640deef5688..32896c4d5732 100644
> --- a/dcb/dcb.c
> +++ b/dcb/dcb.c
> @@ -5,6 +5,7 @@
>   #include <linux/dcbnl.h>
>   #include <libmnl/libmnl.h>
>   #include <getopt.h>
> +#include <bsd/stdlib.h>
>   
>   #include "dcb.h"
>   #include "mnl_utils.h"
> 

sorry for the resend. please ignore. sent v2 of the patch.
diff mbox series

Patch

diff --git a/dcb/dcb.c b/dcb/dcb.c
index 6640deef5688..32896c4d5732 100644
--- a/dcb/dcb.c
+++ b/dcb/dcb.c
@@ -5,6 +5,7 @@ 
 #include <linux/dcbnl.h>
 #include <libmnl/libmnl.h>
 #include <getopt.h>
+#include <bsd/stdlib.h>
 
 #include "dcb.h"
 #include "mnl_utils.h"