From ee5fbae36e81243e376e09c197940b09a3e734ce Mon Sep 17 00:00:00 2001 From: patacongo Date: Mon, 8 Dec 2008 17:00:16 +0000 Subject: [PATCH] Remove extra line git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1435 42af7a65-404d-4744-a932-0658087f49c3 --- lib/lib_fixedmath.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/lib_fixedmath.c b/lib/lib_fixedmath.c index b13e1fafd8..dcd1005597 100644 --- a/lib/lib_fixedmath.c +++ b/lib/lib_fixedmath.c @@ -243,7 +243,6 @@ ub16_t ub16divub16(ub16_t num, ub16_t denom) * = numi*2**32 / den + numf*2**16 /den (b16) */ - /* Check for overflow in the first part of the quotient */ term1 = ((uint32)num & 0xffff0000) / denom;