mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 14:06:23 +00:00
libcheck: fix macos werror build
../libs/gst/check/libcheck/check.c:617:15: error: result of comparison of constant 4294967295 with expression of type 'clockid_t' is always false [-Werror,-Wtautological-constant-out-of-range-compare] if (clockid == -1) { ~~~~~~~ ^ ~~
This commit is contained in:
parent
43622119bb
commit
83e0da2061
1 changed files with 2 additions and 1 deletions
|
@ -73,7 +73,8 @@ foreach arg : [
|
||||||
'-Wno-missing-declarations',
|
'-Wno-missing-declarations',
|
||||||
'-Wno-old-style-definition',
|
'-Wno-old-style-definition',
|
||||||
'-Wno-declaration-after-statement',
|
'-Wno-declaration-after-statement',
|
||||||
'-Wno-format-nonliteral']
|
'-Wno-format-nonliteral',
|
||||||
|
'-Wno-tautological-constant-out-of-range-compare']
|
||||||
if cc.has_argument(arg)
|
if cc.has_argument(arg)
|
||||||
no_warn_args += [arg]
|
no_warn_args += [arg]
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue