From: Jasvinder Singh Date: Fri, 8 Apr 2016 17:13:27 +0000 (+0100) Subject: examples/ip_pipeline: fix 32-bit build X-Git-Tag: spdx-start~7026 X-Git-Url: http://git.droids-corp.org/?p=dpdk.git;a=commitdiff_plain;h=6736fe538128b35938fe499856a031626f16eeb1 examples/ip_pipeline: fix 32-bit build error log: ip_pipeline/pipeline/pipeline_routing_be.c:1537: integer constant is too large for 'long' type Fixes: 0ae7275810f1 ("examples/ip_pipeline: add more functions to routing pipeline") Signed-off-by: Jasvinder Singh Acked-by: Pablo de Lara Acked-by: John McNamara --- diff --git a/examples/ip_pipeline/pipeline/pipeline_routing_be.c b/examples/ip_pipeline/pipeline/pipeline_routing_be.c index 431c63656b..bc5bf7a5c6 100644 --- a/examples/ip_pipeline/pipeline/pipeline_routing_be.c +++ b/examples/ip_pipeline/pipeline/pipeline_routing_be.c @@ -65,7 +65,7 @@ ((((uint64_t) (pipe)) & 0xFFFFFFFF) << 32)) -#define MAC_SRC_DEFAULT 0x112233445566 +#define MAC_SRC_DEFAULT 0x112233445566ULL #ifndef PIPELINE_ROUTING_LPM_TABLE_NUMBER_TABLE8s #define PIPELINE_ROUTING_LPM_TABLE_NUMBER_TABLE8s 256