summaryrefslogtreecommitdiff
path: root/emfloat.c
diff options
context:
space:
mode:
Diffstat (limited to 'emfloat.c')
-rw-r--r--emfloat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/emfloat.c b/emfloat.c
index 4a68fe2..4d9754d 100644
--- a/emfloat.c
+++ b/emfloat.c
@@ -180,7 +180,7 @@ uint32_t accum; /* Accumulator */
accum=(uint32_t)b;
accum-=(uint32_t)c;
accum-=(uint32_t)*borrow;
-*borrow=(uint32_t)((accum & 0x00010000) ? 1 : 0); /* New borrow */
+*borrow=(accum & 0x00010000) ? 1 : 0; /* New borrow */
*a=(uint16_t)(accum & 0xFFFF);
return;
}