miext/sync: Fix needless ABI change

The initialized field was added in:

    commit 82f01ad786
    Author: Alex Goins <agoins@nvidia.com>
    Date:   Wed Apr 10 13:48:02 2019 -0500

        xsync: Add resource inside of SyncCreate, export SyncCreate

But it added this field not at the end of SyncObject. It may not have
been _usefully_ possible to create those from another extension prior to
that commit, but that's still an ABI-incompatible change.
This commit is contained in:
Adam Jackson 2019-08-19 14:27:54 -04:00
parent 95dcc81cb1
commit 194ba38728
1 changed files with 1 additions and 1 deletions

View File

@ -43,8 +43,8 @@ struct _SyncObject {
struct _SyncTriggerList *pTriglist; /* list of triggers */
XID id; /* resource ID */
unsigned char type; /* SYNC_* */
Bool initialized; /* FALSE if created but not initialized */
Bool beingDestroyed; /* in process of going away */
Bool initialized; /* FALSE if created but not initialized */
};
typedef struct _SyncCounter {