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:
parent
92dd0a5d38
commit
9b8ed11141
1 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue