qapi: add missing colon-ending for section name

The documentation parser we are going to add expects a section name to
end with ':', otherwise the comment is treated as free-form text body.

Backports commit 5072f7b38b1b9b26b8fbe1a89086386a420aded8 from qemu
This commit is contained in:
Marc-André Lureau 2018-03-01 09:06:59 -05:00 committed by Lioncash
parent 8575514f4c
commit b0e5d04813
No known key found for this signature in database
GPG key ID: 4E3C3CC1031BA9C7

View file

@ -6,7 +6,7 @@
{ 'include': 'qapi/common.json' }
##
# @X86CPURegister32
# @X86CPURegister32:
#
# A X86 32-bit register
#
@ -16,7 +16,7 @@
'data': [ 'EAX', 'EBX', 'ECX', 'EDX', 'ESP', 'EBP', 'ESI', 'EDI' ] }
##
# @X86CPUFeatureWordInfo
# @X86CPUFeatureWordInfo:
#
# Information about a X86 CPU feature word
#
@ -38,11 +38,11 @@
'features': 'int' } }
##
# @DummyForceArrays
# @DummyForceArrays:
#
# Not used by QMP; hack to let us use X86CPUFeatureWordInfoList internally
#
# Since 2.5
# Since: 2.5
##
{ 'struct': 'DummyForceArrays',
'data': { 'unused': ['X86CPUFeatureWordInfo'] } }