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:
committed by
Gerrit - the friendly Code Review server
parent
56710aac73
commit
5620bb1611
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user