diff options
author | Doug Evans | 2021-02-12 01:56:30 +0100 |
---|---|---|
committer | Paolo Bonzini | 2021-02-25 14:14:33 +0100 |
commit | 3a2e982d4774993290a12c75f5918e3caec80d2b (patch) | |
tree | 302664c3be0c4a1432e319c12adc5f1d8016e274 /qom/object.c | |
parent | target/i386: update to show preferred boolean syntax for -cpu (diff) | |
download | qemu-3a2e982d4774993290a12c75f5918e3caec80d2b.tar.gz qemu-3a2e982d4774993290a12c75f5918e3caec80d2b.tar.xz qemu-3a2e982d4774993290a12c75f5918e3caec80d2b.zip |
qom/object.c: Fix typo
A simple typo (noticed by inspection).
Signed-off-by: Doug Evans <dje@google.com>
Message-Id: <000000000000530c7105bb191b33@google.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Doug Evans <dje@google.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'qom/object.c')
-rw-r--r-- | qom/object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qom/object.c b/qom/object.c index 491823db4a..6a01d56546 100644 --- a/qom/object.c +++ b/qom/object.c @@ -695,7 +695,7 @@ static void object_finalize(void *data) /* Find the minimum alignment guaranteed by the system malloc. */ #if __STDC_VERSION__ >= 201112L -typddef max_align_t qemu_max_align_t; +typedef max_align_t qemu_max_align_t; #else typedef union { long l; |