2017-05-05 3:12 GMT+02:00 Aaron Levinson <alevi...@aracnet.com>:
> On 5/4/2017 4:32 PM, Carl Eugen Hoyos wrote:
>> Hi!
>>
>> It may be better to disable the warning.
>>
>> Carl Eugen
>>
>> -        num = den ? num * intnum / den : (num * intnum ? INFINITY : NAN);
>> +        num = den ? num * intnum / den : (num && intnum ? INFINITY : NAN);
>
> In order to preserve the original logic, why not do the following:
>
> +        num = den ? num * intnum / den : (((num * intnum) != 0) ? INFINITY : 
> NAN);

Simpler patch attached.

Carl Eugen
From 65811b8d63aee1bb02dc3d379bfba74b72524e67 Mon Sep 17 00:00:00 2001
From: Carl Eugen Hoyos <ceho...@ag.or.at>
Date: Fri, 5 May 2017 09:24:28 +0200
Subject: [PATCH] configure: Silence a less useful warning.

Silences the following warning:
warning: '*' in boolean context, suggest '&&' instead [-Wint-in-bool-context]
---
 configure |    1 +
 1 file changed, 1 insertion(+)

diff --git a/configure b/configure
index 804b0ce..bb969f0 100755
--- a/configure
+++ b/configure
@@ -6116,6 +6116,7 @@ check_cflags -Wmissing-prototypes
 check_cflags -Wno-pointer-to-int-cast
 check_cflags -Wstrict-prototypes
 check_cflags -Wempty-body
+check_cflags -Wno-int-in-bool-context
 
 if enabled extra_warnings; then
     check_cflags -Wcast-qual
-- 
1.7.10.4

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Reply via email to