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
This commit is contained in:
Ravi Joshi 2014-04-02 14:52:40 -07:00 committed by Gerrit - the friendly Code Review server
parent 92dd0a5d38
commit 9b8ed11141

View file

@ -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"