Skip to content

Commit fab451d

Browse files
Chen Nijgross1
authored andcommitted
xen/arm: Convert comma to semicolon
Replace a comma between expression statements by a semicolon. Signed-off-by: Chen Ni <[email protected]> Reviewed-by: Stefano Stabellini <[email protected]> Message-ID: <[email protected]> Signed-off-by: Juergen Gross <[email protected]>
1 parent 611ff1b commit fab451d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arm/xen/p2m.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ int set_foreign_p2m_mapping(struct gnttab_map_grant_ref *map_ops,
109109
* immediate unmapping.
110110
*/
111111
map_ops[i].status = GNTST_general_error;
112-
unmap.host_addr = map_ops[i].host_addr,
112+
unmap.host_addr = map_ops[i].host_addr;
113113
unmap.handle = map_ops[i].handle;
114114
map_ops[i].handle = INVALID_GRANT_HANDLE;
115115
if (map_ops[i].flags & GNTMAP_device_map)

0 commit comments

Comments
 (0)