git.droids-corp.org
/
dpdk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d53aad6
)
net: fix missing include in exported header
author
Adrien Mazarguil
<adrien.mazarguil@6wind.com>
Wed, 26 Apr 2017 12:07:12 +0000
(14:07 +0200)
committer
Thomas Monjalon
<thomas@monjalon.net>
Sun, 30 Apr 2017 22:10:23 +0000
(
00:10
+0200)
This commit addresses the following errors:
In file included from /tmp/check-includes.sh.18889.c:1:0:
build/include/rte_net_crc.h:86:1: error: unknown type name 'uint32_t'
[...]
Fixes:
986ff526fb84
("net: add CRC computation API")
Signed-off-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
Acked-by: Jasvinder Singh <jasvinder.singh@intel.com>
lib/librte_net/rte_net_crc.h
patch
|
blob
|
history
diff --git
a/lib/librte_net/rte_net_crc.h
b/lib/librte_net/rte_net_crc.h
index
76fd129
..
d22286c
100644
(file)
--- a/
lib/librte_net/rte_net_crc.h
+++ b/
lib/librte_net/rte_net_crc.h
@@
-34,6
+34,8
@@
#ifndef _RTE_NET_CRC_H_
#define _RTE_NET_CRC_H_
+#include <stdint.h>
+
#ifdef __cplusplus
extern "C" {
#endif