mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
maint: remove double semicolons in many files
A number of source files have statements accidentally terminated by a double semicolon - eg 'foo = bar;;'. This is harmless but a mistake none the less. The tcg/ia64/tcg-target.c file is whitelisted because it has valid use of ';;' in a comment containing assembly code. Signed-off-by: Daniel P. Berrange <berrange@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
fee562e9e4
commit
a8f15a2775
5 changed files with 6 additions and 6 deletions
|
@ -659,7 +659,7 @@ static GuestFilesystemInfo *build_guest_fsinfo(char *guid, Error **errp)
|
|||
fs->mountpoint = g_strndup(mnt_point, len);
|
||||
}
|
||||
fs->type = g_strdup(fs_name);
|
||||
fs->disk = build_guest_disk_info(guid, errp);;
|
||||
fs->disk = build_guest_disk_info(guid, errp);
|
||||
free:
|
||||
g_free(mnt_point);
|
||||
return fs;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue