aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m68k
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert@linux-m68k.org>2021-09-14 09:31:55 +0200
committerGeert Uytterhoeven <geert@linux-m68k.org>2021-09-24 13:35:23 +0200
commit6621cb4a2d0a40c54adf378bf2a17a50f91cc831 (patch)
tree76e39e0dd808e7942d780538d1226da7e0646e22 /arch/m68k
parentm68k: Remove set_fs() (diff)
downloadlinux-dev-6621cb4a2d0a40c54adf378bf2a17a50f91cc831.tar.xz
linux-dev-6621cb4a2d0a40c54adf378bf2a17a50f91cc831.zip
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 <julia.lawall@inria.fr>. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Link: https://lore.kernel.org/r/20210914073155.3883532-1-geert@linux-m68k.org
Diffstat (limited to 'arch/m68k')
-rw-r--r--arch/m68k/lib/muldi3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/lib/muldi3.c b/arch/m68k/lib/muldi3.c
index 3fb05c698c41..eb7d9d86ff66 100644
--- a/arch/m68k/lib/muldi3.c
+++ b/arch/m68k/lib/muldi3.c
@@ -84,7 +84,7 @@ __muldi3 (DItype u, DItype v)
DIunion w;
DIunion uu, vv;
- uu.ll = u,
+ uu.ll = u;
vv.ll = v;
w.ll = __umulsidi3 (uu.s.low, vv.s.low);