Bug 1190248: Delete a space at the end of a line.
authorWan-Teh Chang <wtc@google.com>
Tue, 25 Aug 2015 10:30:01 -0700
changeset 11558 608645309ab97aff5f6bf5bb71ddf13cc8a820f5
parent 11557 a555bf0fc23a981f22ed8ea6da89ef8d0c5ecf56
child 11559 b858337c4c1b45200670183f13f7db1a4c810d96
push id718
push userwtc@google.com
push dateTue, 25 Aug 2015 17:30:12 +0000
bugs1190248
Bug 1190248: Delete a space at the end of a line.
lib/freebl/mpi/mpi.c
--- a/lib/freebl/mpi/mpi.c
+++ b/lib/freebl/mpi/mpi.c
@@ -4209,17 +4209,17 @@ mp_err   s_mp_div(mp_int *rem, 	/* i: di
     int unusedRem;
     int partExtended = 0;  /* set to true if we need to extend part */
 
     unusedRem = MP_USED(rem) - MP_USED(div);
     MP_DIGITS(&part) = MP_DIGITS(rem) + unusedRem;
     MP_ALLOC(&part)  = MP_ALLOC(rem)  - unusedRem;
     MP_USED(&part)   = MP_USED(div);
 
-    /* We have now truncated the part of the remainder to the same length as 
+    /* We have now truncated the part of the remainder to the same length as
      * the divisor. If part is smaller than div, extend part by one digit. */
     if (s_mp_cmp(&part, div) < 0) {
       -- unusedRem;
 #if MP_ARGCHK == 2
       assert(unusedRem >= 0);
 #endif
       -- MP_DIGITS(&part);
       ++ MP_USED(&part);