From 613be40b15d8e645a188a003b2b125b2e3aced8b Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Mon, 27 Apr 2015 16:27:17 +0200 Subject: pkt_buff: Change type of link_type field The link type is handled as uint32_t in the rest of the code base so use that type here as well. Signed-off-by: Tobias Klauser --- pkt_buff.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkt_buff.h b/pkt_buff.h index 58b0506..e044f66 100644 --- a/pkt_buff.h +++ b/pkt_buff.h @@ -20,7 +20,7 @@ struct pkt_buff { unsigned int size; struct protocol *handler; - int link_type; + uint32_t link_type; uint16_t proto; }; -- cgit v1.2.3-54-g00ecf