mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
eval: Explicitly ignore return value of strtod() in parse_db()
The return value is not needed. This fixes the warning: libavutil/eval.c:353:15: warning: ignoring return value of ‘strtod’
This commit is contained in:
parent
6ff15cd569
commit
5b097399ba
@ -26,6 +26,7 @@
|
||||
* see http://joe.hotchkiss.com/programming/eval/eval.html
|
||||
*/
|
||||
|
||||
#include "attributes.h"
|
||||
#include "avutil.h"
|
||||
#include "common.h"
|
||||
#include "eval.h"
|
||||
@ -350,7 +351,7 @@ static int parse_dB(AVExpr **e, Parser *p, int *sign)
|
||||
for example, -3dB is not the same as -(3dB) */
|
||||
if (*p->s == '-') {
|
||||
char *next;
|
||||
strtod(p->s, &next);
|
||||
double av_unused ignored = strtod(p->s, &next);
|
||||
if (next != p->s && next[0] == 'd' && next[1] == 'B') {
|
||||
*sign = 0;
|
||||
return parse_primary(e, p);
|
||||
|
Loading…
Reference in New Issue
Block a user