diff options
author | Carl Worth <cworth@cworth.org> | 2006-06-06 15:41:31 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2006-06-06 15:41:31 -0700 |
commit | 5278de09973c3e41028dc80a8862db01fc70cf11 (patch) | |
tree | fa1b95ff513448d59ef955ba255ed7f681a486c2 /src/cairo-wideint.c | |
parent | 00592e075754594605fddfb2a702f3d2caa7c55c (diff) |
Remove all remaining trailing whitespace.
This patch was produced with the following (GNU) sed script:
sed -i -r -e 's/[ \t]+$//'
run on all *.[ch] files within cairo.
Note that the above script would have also created all the changes
from the previous commits to remove trailing whitespace.
Diffstat (limited to 'src/cairo-wideint.c')
-rw-r--r-- | src/cairo-wideint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-wideint.c b/src/cairo-wideint.c index b5fd5551..da68f1be 100644 --- a/src/cairo-wideint.c +++ b/src/cairo-wideint.c @@ -476,7 +476,7 @@ _cairo_int64x64_128_mul (cairo_int64_t a, cairo_int64_t b) s = _cairo_uint64x64_128_mul (_cairo_int64_to_uint64(a), _cairo_int64_to_uint64(b)); if (_cairo_int64_negative (a)) - s.hi = _cairo_uint64_sub (s.hi, + s.hi = _cairo_uint64_sub (s.hi, _cairo_int64_to_uint64 (b)); if (_cairo_int64_negative (b)) s.hi = _cairo_uint64_sub (s.hi, |