Skip to content

Commit 160010e

Browse files
committed
Fix incorrect code ffabs() call to fabs()
Resolves #491
1 parent 958ba5a commit 160010e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

books/RayTracingTheNextWeek.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1591,7 +1591,7 @@
15911591
temp_p *= 2;
15921592
}
15931593

1594-
return ffabs(accum);
1594+
return fabs(accum);
15951595
}
15961596
...
15971597
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

0 commit comments

Comments
 (0)