scripts: squash a -Wmaybe-uninitialized
Closes: #968 Approved by: cgwalters
This commit is contained in:
parent
a78a88844c
commit
5294c1ea69
@ -14,7 +14,7 @@ git clean -dfx
|
|||||||
|
|
||||||
# And now a clang build to find unused variables
|
# And now a clang build to find unused variables
|
||||||
export CC=clang
|
export CC=clang
|
||||||
export CFLAGS='-Werror=unused-variable'
|
export CFLAGS='-Werror=unused-variable -Werror=maybe-uninitialized'
|
||||||
build_default
|
build_default
|
||||||
# don't actually run the tests, just compile them
|
# don't actually run the tests, just compile them
|
||||||
/usr/bin/make check TESTS=
|
/usr/bin/make check TESTS=
|
||||||
|
@ -488,6 +488,8 @@ rpmostree_script_run_sync (DnfPackage *pkg,
|
|||||||
case RPMOSTREE_SCRIPT_POSTTRANS:
|
case RPMOSTREE_SCRIPT_POSTTRANS:
|
||||||
scriptkind = &posttrans_script;
|
scriptkind = &posttrans_script;
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
g_assert_not_reached ();
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean did_run = FALSE;
|
gboolean did_run = FALSE;
|
||||||
|
Loading…
Reference in New Issue
Block a user