projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9fde034
)
m68k: muldi3: Use semicolon instead of comma
author
Geert Uytterhoeven
<geert@linux-m68k.org>
Tue, 14 Sep 2021 07:31:55 +0000
(09:31 +0200)
committer
Geert Uytterhoeven
<geert@linux-m68k.org>
Fri, 24 Sep 2021 11:35:23 +0000
(13:35 +0200)
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
arch/m68k/lib/muldi3.c
patch
|
blob
|
history
diff --git
a/arch/m68k/lib/muldi3.c
b/arch/m68k/lib/muldi3.c
index 3fb05c698c41ebfb28e9101dde8bf6480cb17e52..eb7d9d86ff6697a5f6e35a12b7d3f5c445e6e39f 100644
(file)
--- 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);