summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CORE/MAC/src/cfg/polFile.h10
-rw-r--r--CORE/SYS/common/src/wlan_qct_sys.c10
2 files changed, 10 insertions, 10 deletions
diff --git a/CORE/MAC/src/cfg/polFile.h b/CORE/MAC/src/cfg/polFile.h
index e18e49346e90..6378918e0cd9 100644
--- a/CORE/MAC/src/cfg/polFile.h
+++ b/CORE/MAC/src/cfg/polFile.h
@@ -123,8 +123,8 @@ typedef struct sPolFileHeader {
tPolFileVersion FileVersion;
tPolFileVersion HWCapabilities;
- unsigned long FileLength;
- unsigned long NumDirectoryEntries;
+ unsigned int FileLength;
+ unsigned int NumDirectoryEntries;
} tPolFileHeader;
@@ -143,9 +143,9 @@ typedef enum ePolFileDirTypes {
typedef struct sPolFileDirEntry {
- unsigned long DirEntryType;
- unsigned long DirEntryFileOffset;
- unsigned long DirEntryLength;
+ unsigned int DirEntryType;
+ unsigned int DirEntryFileOffset;
+ unsigned int DirEntryLength;
} tPolFileDirEntry;
diff --git a/CORE/SYS/common/src/wlan_qct_sys.c b/CORE/SYS/common/src/wlan_qct_sys.c
index bc8b89020747..b84aa81de21f 100644
--- a/CORE/SYS/common/src/wlan_qct_sys.c
+++ b/CORE/SYS/common/src/wlan_qct_sys.c
@@ -199,8 +199,8 @@ typedef struct sPolFileHeader
{
tPolFileVersion FileVersion;
tPolFileVersion HWCapabilities;
- unsigned long FileLength;
- unsigned long NumDirectoryEntries;
+ unsigned int FileLength;
+ unsigned int NumDirectoryEntries;
} tPolFileHeader;
@@ -219,9 +219,9 @@ typedef enum ePolFileDirTypes
typedef struct sPolFileDirEntry
{
- unsigned long DirEntryType;
- unsigned long DirEntryFileOffset;
- unsigned long DirEntryLength;
+ unsigned int DirEntryType;
+ unsigned int DirEntryFileOffset;
+ unsigned int DirEntryLength;
} tPolFileDirEntry;