Remove extra line

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1435 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2008-12-08 17:00:16 +00:00
parent b933b1cad6
commit ee5fbae36e
1 changed files with 0 additions and 1 deletions

View File

@ -243,7 +243,6 @@ ub16_t ub16divub16(ub16_t num, ub16_t denom)
* = numi*2**32 / den + numf*2**16 /den (b16) * = numi*2**32 / den + numf*2**16 /den (b16)
*/ */
/* Check for overflow in the first part of the quotient */ /* Check for overflow in the first part of the quotient */
term1 = ((uint32)num & 0xffff0000) / denom; term1 = ((uint32)num & 0xffff0000) / denom;