From 7314523085aada01c56df1cb302f7c2b71bb5086 Mon Sep 17 00:00:00 2001 From: Yingying Tang Date: Wed, 22 Mar 2017 17:01:46 +0800 Subject: qcacld-3.0: Fix compilation error of unsigned only in ISO C90 Constant value 4294967295 is recognized as an signed integer in ISO C90. Change the definition of the constant value to 4294967295UL to fix compilation error where need a unsigned value as a input parameter. Change-Id: I02f67b6351c53b5e3331ce668059c4c61953a8d3 CRs-Fixed: 2023140 --- core/hdd/inc/wlan_hdd_debugfs_llstat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/hdd/inc/wlan_hdd_debugfs_llstat.h b/core/hdd/inc/wlan_hdd_debugfs_llstat.h index e72bb84ed757..a56fd608c733 100644 --- a/core/hdd/inc/wlan_hdd_debugfs_llstat.h +++ b/core/hdd/inc/wlan_hdd_debugfs_llstat.h @@ -36,7 +36,7 @@ #define _WLAN_HDD_DEBUGFS_LLSTAT_H #define DEBUGFS_LLSTATS_BUF_SIZE 10240 -#define DEBUGFS_LLSTATS_REQID 4294967295 +#define DEBUGFS_LLSTATS_REQID 4294967295UL #define DEBUGFS_LLSTATS_REQMASK 0x7 #include -- cgit v1.2.3