This topic created in 4888 days ago, the information mentioned may be changed or developed.
pkg_manifest.c:416:20: error: comparison of constant 2147483647 with expression of type 'pkg_script' is always false [-Werror,-Wtautological-constant-out-of-range-compare]
if (script_type == INT_MAX) {
~~~~~~~~~~~ ^ ~~~~~~~
1 error generated.
pkg_manifest.c:416:20: error: comparison of constant 2147483647 with expression of type 'pkg_script' is always false [-Werror,-Wtautological-constant-out-of-range-compare]
if (script_type == INT_MAX) {
~~~~~~~~~~~ ^ ~~~~~~~
change to
script_type == -1
先用着再说