From 5620bb1611be0a9c961aa450088209cfd8d18414 Mon Sep 17 00:00:00 2001 From: Ravi Joshi Date: Wed, 2 Apr 2014 14:52:40 -0700 Subject: [PATCH] framework: Fix for making SAP sdk code 64 bit compliant Fix for making SAP SDK code 64 bit compliant. The typedefs were incorrect on an LP64 architecture since a long int will be 64-bits. Change-Id: I4c9f5f2fb2b820193fbe03fdf8e2307c281ea014 CRs-Fixed: 640894 --- softap/sdk/qsap_api.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/softap/sdk/qsap_api.h b/softap/sdk/qsap_api.h index 3e7035c..b76919b 100644 --- a/softap/sdk/qsap_api.h +++ b/softap/sdk/qsap_api.h @@ -39,8 +39,8 @@ typedef unsigned char u8; typedef char s8; typedef unsigned short int u16; typedef signed short int s16; -typedef unsigned long int u32; -typedef signed long int s32; +typedef unsigned int u32; +typedef signed int s32; /** Success and error messages */ #define SUCCESS "success"