diff options
author | Daniel P. Berrange <berrange@redhat.com> | 2015-08-26 12:17:12 +0100 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2015-09-11 10:21:38 +0300 |
commit | a8f15a27752d855d339befd8de4f0ad1c4dbb0ab (patch) | |
tree | fcffeebee50c2503dc0ed6397119ad89d0d47fae /qga/commands-win32.c | |
parent | fee562e9e41290a22623de83b673a8929ec5280d (diff) | |
download | qemu-a8f15a27752d855d339befd8de4f0ad1c4dbb0ab.tar.gz qemu-a8f15a27752d855d339befd8de4f0ad1c4dbb0ab.tar.bz2 qemu-a8f15a27752d855d339befd8de4f0ad1c4dbb0ab.zip |
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>
Diffstat (limited to 'qga/commands-win32.c')
-rw-r--r-- | qga/commands-win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qga/commands-win32.c b/qga/commands-win32.c index cbee18644b..41bdd3f7cc 100644 --- a/qga/commands-win32.c +++ b/qga/commands-win32.c @@ -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; |