mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-22 09:32:40 -06:00
Delete duplicate QOM typedefs
Generated using: $ ./scripts/codeconverter/converter.py -i \ --pattern=QOMDuplicatedTypedefs $(git grep -l '' -- '*.[ch]') Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Message-Id: <20200831210740.126168-8-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
94dfc0f343
commit
1c8eef0227
1 changed files with 4 additions and 4 deletions
|
@ -39,14 +39,14 @@
|
||||||
typedef struct QCryptoSecretKeyring QCryptoSecretKeyring;
|
typedef struct QCryptoSecretKeyring QCryptoSecretKeyring;
|
||||||
typedef struct QCryptoSecretKeyringClass QCryptoSecretKeyringClass;
|
typedef struct QCryptoSecretKeyringClass QCryptoSecretKeyringClass;
|
||||||
|
|
||||||
typedef struct QCryptoSecretKeyring {
|
struct QCryptoSecretKeyring {
|
||||||
QCryptoSecretCommon parent;
|
QCryptoSecretCommon parent;
|
||||||
int32_t serial;
|
int32_t serial;
|
||||||
} QCryptoSecretKeyring;
|
};
|
||||||
|
|
||||||
|
|
||||||
typedef struct QCryptoSecretKeyringClass {
|
struct QCryptoSecretKeyringClass {
|
||||||
QCryptoSecretCommonClass parent;
|
QCryptoSecretCommonClass parent;
|
||||||
} QCryptoSecretKeyringClass;
|
};
|
||||||
|
|
||||||
#endif /* QCRYPTO_SECRET_KEYRING_H */
|
#endif /* QCRYPTO_SECRET_KEYRING_H */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue