------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. http://bugs.kde.org/show_bug.cgi?id=61796 staikos@kde.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From staikos@kde.org 2003-08-01 00:38 ------- Subject: ARTS_1_1_BRANCH: arts/soundserver CVS commit by staikos: no fabsf() in non-C99 environments This should be forward ported. CCMAIL: 61796-done@bugs.kde.org M +1 -1 artsd.cc 1.43.2.3 --- arts/soundserver/artsd.cc #1.43.2.2:1.43.2.3 @@ -292,5 +292,5 @@ int main(int argc, char **argv) AudioManager audioManager; - if (fabsf(cfgVolume) > 1e-10) + if (fabs(cfgVolume) > 1e-10) server.outVolume().scaleFactor(cfgVolume);