From 9425ce2fba6dd643c240386901de370ac90cc337 Mon Sep 17 00:00:00 2001 From: Carl Smedstad Date: Fri, 30 Dec 2022 08:50:14 +0100 Subject: Replace math functions that promote float to double --- sway/config/output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sway/config') diff --git a/sway/config/output.c b/sway/config/output.c index 914cf6c4..e2e48e4c 100644 --- a/sway/config/output.c +++ b/sway/config/output.c @@ -257,7 +257,7 @@ static void set_mode(struct wlr_output *output, struct wlr_output_state *pending // Not all floating point integers can be represented exactly // as (int)(1000 * mHz / 1000.f) // round() the result to avoid any error - int mhz = (int)round(refresh_rate * 1000); + int mhz = (int)roundf(refresh_rate * 1000); if (wl_list_empty(&output->modes) || custom) { sway_log(SWAY_DEBUG, "Assigning custom mode to %s", output->name); -- cgit v1.2.3