diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-01-06 01:19:05 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-01-06 01:19:05 +0100 |
commit | e064752dd476b7a2f76567f8cc15f9c2645e5d3d (patch) | |
tree | c9e19d5c4eab3c47cc151fd009604df9afd466f0 /sys | |
parent | 32c11e287188d825e7d00aed616bfaccbbaafbf6 (diff) |
libmp: silence compiler warning for strtomp
Diffstat (limited to 'sys')
-rw-r--r-- | sys/src/libmp/port/strtomp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/libmp/port/strtomp.c b/sys/src/libmp/port/strtomp.c index 17954fd04..78c38fe86 100644 --- a/sys/src/libmp/port/strtomp.c +++ b/sys/src/libmp/port/strtomp.c @@ -88,7 +88,7 @@ from8(char *a, mpint *b) next = p; i = 0; - x = 0; + x = y = 0; while(p > a){ y = tab.t10[*(uchar*)--p]; x |= y << i; |