summaryrefslogtreecommitdiff
path: root/audio/libofa/patches/patch-aa
blob: 4e73408d92001240ff9a340a7f5610fff28abb29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$NetBSD: patch-aa,v 1.1.1.1 2006/07/12 13:12:57 wiz Exp $

--- lib/JAMA/tnt_math_utils.h.orig	2006-05-10 17:58:50.000000000 +0000
+++ lib/JAMA/tnt_math_utils.h
@@ -30,7 +30,7 @@ Real hypot(const Real &a, const Real &b)
 {
 	
 	if (a== 0)
-		return abs(b);
+		return fabs(b);
 	else
 	{
 		Real c = b/a;