summaryrefslogtreecommitdiff
path: root/longlong.h
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2011-10-14 13:36:35 +0200
committerTorbjorn Granlund <tege@gmplib.org>2011-10-14 13:36:35 +0200
commit3444cc3b84dcf51a6a593558c2ab024935c437f9 (patch)
treeaf0ab407674c3c5bbba2ca4eed62ec3709b24a27 /longlong.h
parent48bbb357f4fafd8cee6d899a693cdd7a3e2e9066 (diff)
downloadgmp-3444cc3b84dcf51a6a593558c2ab024935c437f9.tar.gz
(s390 umul_ppmm): Fix typo in pure C variant.
Diffstat (limited to 'longlong.h')
-rw-r--r--longlong.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/longlong.h b/longlong.h
index cc17ca05b..9ed88f474 100644
--- a/longlong.h
+++ b/longlong.h
@@ -683,7 +683,7 @@ extern UWtype __MPN(udiv_qrnnd) _PROTO ((UWtype *, UWtype, UWtype, UWtype));
union {UDItype __ll; \
struct {USItype __h, __l;} __i; \
} __x; \
- __x.__ll = (UDItype) m0 * (UDItype) m1; \
+ __x.__ll = (UDItype) (m0) * (UDItype) (m1); \
(xh) = __x.__i.__h; (xl) = __x.__i.__l; \
} while (0)
#else