From fd4ec99398e6d2e495634065141df52c25f4ae67 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 22 Jun 2023 12:03:21 +0200 Subject: Fix warning in previous commit --- libbutl/fdstream.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libbutl') diff --git a/libbutl/fdstream.cxx b/libbutl/fdstream.cxx index e29bb50..18f611f 100644 --- a/libbutl/fdstream.cxx +++ b/libbutl/fdstream.cxx @@ -2064,7 +2064,7 @@ namespace butl // Use exponential backoff but not too aggressive and with 25ms max. // - DWORD t (i >= 100 ? 25 : 1 + (i / 4)); + DWORD t (static_cast (i >= 100 ? 25 : 1 + (i / 4))); if (timeout) { -- cgit v1.1