summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@igalia.com>2019-05-04 11:00:00 -0500
committerJan-Michael Brummer <jan.brummer@tabos.org>2019-05-04 20:05:46 +0000
commitb026c5af8c0eabb9173d847c2c52691d5043e09b (patch)
tree733a418198ab12ae8579db7a13d243791fe56677 /tests
parent1ddd4de6a00cdf65336ddea9251442bc8f9777fc (diff)
downloadepiphany-b026c5af8c0eabb9173d847c2c52691d5043e09b.tar.gz
Build with -Wextra and -Werror=format-security
We'll need to suppress a few warnings, and fix some code that triggers -Wsign-compare. One -Wsign-compare is not fixed here because it's a real bug, to be addressed separately. We'll also manually add -Werror=format-security since this is amazingly not included in -Wextra.
Diffstat (limited to 'tests')
-rw-r--r--tests/ephy-web-app-utils-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ephy-web-app-utils-test.c b/tests/ephy-web-app-utils-test.c
index 6e45c358c..8b1a918d8 100644
--- a/tests/ephy-web-app-utils-test.c
+++ b/tests/ephy-web-app-utils-test.c
@@ -49,7 +49,7 @@ static const WebAppTest test_web_app[] = {
static void
test_web_app_lifetime (void)
{
- int i;
+ guint i;
for (i = 0; i < G_N_ELEMENTS (test_web_app); i++) {
WebAppTest test = test_web_app[i];