From eea560d1a5a1a56bfab899696a396206ed226545 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Mon, 6 Jan 2014 14:23:52 -0500 Subject: use std::max instead of fmax --- pulse.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pulse.cc b/pulse.cc index 2d0b94f..3f98b19 100644 --- a/pulse.cc +++ b/pulse.cc @@ -3,7 +3,6 @@ // C #include -#include #include #include @@ -74,7 +73,7 @@ static void server_info_cb(pa_context* context __attribute__((unused)), static pa_cvolume* value_to_cvol(long value, pa_cvolume *cvol) { return pa_cvolume_set(cvol, cvol->channels, - fmax(static_cast(value + .5) * PA_VOLUME_NORM / 100, 0)); + std::max((value + .5) * PA_VOLUME_NORM / 100, 0.0)); } static int volume_as_percent(const pa_cvolume* cvol) { -- cgit v1.2.3