diff options
author | Stefan Krah <skrah@bytereef.org> | 2013-01-16 14:16:10 (GMT) |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2013-01-16 14:16:10 (GMT) |
commit | 752bfb71d8cdcdd355e8efcaf7c3eba434573f05 (patch) | |
tree | 321c390909d0f7d6ef38e297ceed4dce56f535da /Modules/_decimal/libmpdec/io.c | |
parent | ce55f089fbb025f5dbf1c9f461f0f9ab580fdd53 (diff) | |
download | cpython-752bfb71d8cdcdd355e8efcaf7c3eba434573f05.zip cpython-752bfb71d8cdcdd355e8efcaf7c3eba434573f05.tar.gz cpython-752bfb71d8cdcdd355e8efcaf7c3eba434573f05.tar.bz2 |
Remove trailing whitespace.
Diffstat (limited to 'Modules/_decimal/libmpdec/io.c')
-rw-r--r-- | Modules/_decimal/libmpdec/io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_decimal/libmpdec/io.c b/Modules/_decimal/libmpdec/io.c index 2648135..36470ca 100644 --- a/Modules/_decimal/libmpdec/io.c +++ b/Modules/_decimal/libmpdec/io.c @@ -352,7 +352,7 @@ word_to_string(char *s, mpd_uint_t x, int n, char *dot) case 2: EXTRACT_DIGIT(s, x, 10UL, dot); default: if (s == dot) *s++ = '.'; *s++ = '0' + (char)x; } - + *s = '\0'; return s; } @@ -1059,7 +1059,7 @@ _mpd_add_sep_dot(mpd_mbstr_t *dest, * Not allowed, since _mpd_to_string() never returns this form: * * 3) [sign] '.' digits [exponent-part] - * + * * Input: result->data := original numeric string (ASCII) * result->bytes := strlen(result->data) * result->nchars := strlen(result->data) |