commit | 30c35e8154dca64dace48c25d2b0204108e6d0bb | [log] [tgz] |
---|---|---|
author | Stefan Krah <skrah@bytereef.org> | Thu May 31 15:09:27 2012 +0200 |
committer | Stefan Krah <skrah@bytereef.org> | Thu May 31 15:09:27 2012 +0200 |
tree | 4cc5f203272a7ecdf4234703045fcab1c819e1ec | |
parent | b7a455f326b903c20b54b9aa3b9fbb83c6897fc3 [diff] |
Do not clobber existing flags.
diff --git a/Modules/_decimal/libmpdec/mpdecimal.c b/Modules/_decimal/libmpdec/mpdecimal.c index 5083710..3f43db4 100644 --- a/Modules/_decimal/libmpdec/mpdecimal.c +++ b/Modules/_decimal/libmpdec/mpdecimal.c
@@ -3904,7 +3904,7 @@ if (_mpd_cmp(&aa, &lim) <= 0) { _settriple(result, 0, 1, 0); _mpd_zeropad(result, ctx, status); - *status = MPD_Rounded|MPD_Inexact; + *status |= MPD_Rounded|MPD_Inexact; return 1; }