Fixed argument type in X11 calls (STR 2432)

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7921 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Matthias Melcher 2010-11-30 11:05:38 +00:00
parent 8c56fc7e22
commit cc4e22eabb

View File

@ -48,14 +48,16 @@
* XChar2b which does not have this problem
*/
#if defined(__GNUC__) && defined(__arm__) && !defined(__ARM_EABI__)
typedef struct {
unsigned char byte1;
unsigned char byte2;
}
#if defined(__GNUC__) && defined(__arm__) && !defined(__ARM_EABI__)
__attribute__ ((packed))
#endif
Fl_XChar2b;
#else
#define Fl_XChar2b XChar2b
#endif
/*********************************************************************/