aboutsummaryrefslogtreecommitdiffstats
path: root/src/zseti.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/zseti.c')
-rw-r--r--src/zseti.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zseti.c b/src/zseti.c
index d3514fb..e1116b6 100644
--- a/src/zseti.c
+++ b/src/zseti.c
@@ -5,7 +5,7 @@
void
zseti(z_t a, long long int b)
{
- if (EXPECT(b >= 0, 0)) {
+ if (unlikely(b >= 0)) {
zsetu(a, (unsigned long long int)b);
} else {
zsetu(a, (unsigned long long int)-b);