Skip to content

Commit 6621cb4

Browse files
committed
m68k: muldi3: Use semicolon instead of comma
This code works, but it is cleaner to use a semicolon at the end of a statement instead of a comma. Extracted from a big anonymous patch by Julia Lawall <[email protected]>. Signed-off-by: Geert Uytterhoeven <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 9fde034 commit 6621cb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/m68k/lib/muldi3.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ __muldi3 (DItype u, DItype v)
8484
DIunion w;
8585
DIunion uu, vv;
8686

87-
uu.ll = u,
87+
uu.ll = u;
8888
vv.ll = v;
8989

9090
w.ll = __umulsidi3 (uu.s.low, vv.s.low);

0 commit comments

Comments
 (0)