mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Fix 32-bit alignment bug.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2342 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
@@ -31,9 +31,12 @@
|
||||
/* This file defines an API for using globally unique identifiers. */
|
||||
|
||||
/* The type used to store guids */
|
||||
typedef struct _GUID
|
||||
typedef union _GUID
|
||||
{
|
||||
unsigned char data[16];
|
||||
|
||||
int __align_me; /* this just ensures that GUIDs are 32-bit
|
||||
* aligned on systems that need them to be. */
|
||||
} GUID;
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user