aboutsummaryrefslogtreecommitdiff
path: root/src/libmp/port/mptov.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libmp/port/mptov.c')
-rw-r--r--src/libmp/port/mptov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libmp/port/mptov.c b/src/libmp/port/mptov.c
index b24b8e3e..349bf335 100644
--- a/src/libmp/port/mptov.c
+++ b/src/libmp/port/mptov.c
@@ -29,7 +29,7 @@ vtomp(vlong v, mpint *b)
for(s = 0; s < VLDIGITS && uv != 0; s++){
b->p[s] = uv;
/* !@*$&!@$ gcc gives warnings about the >> here
- * when running on 64-bit machines, even though
+ * when running on 64-bit machines, even though
* it's in dead code. fake it out with two shifts.
if(sizeof(mpdigit) == sizeof(uvlong))
uv = 0;