summaryrefslogtreecommitdiff
path: root/tests/get_alias.c
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2010-03-09 10:49:33 +1100
committerJon Loeliger <jdl@jdl.com>2010-03-10 08:12:28 -0600
commit74f6a51b1f71ffc7d9557e063630469a93eeddec (patch)
treec9f4bc016350af9bbd9b2b671d8aa4f687e7f9fc /tests/get_alias.c
parent8765874963852b2733777e69686251205238ad3d (diff)
downloaddtc-74f6a51b1f71ffc7d9557e063630469a93eeddec.tar.gz
dtc: Enable more warnings
This patch turns on a bunch of extra gcc warnings, most of which are probably a good idea. Of the new warnings -Wnested-externs and -Wstrict-prototypes need no code changes, we're already warning-clean. The remaining one, -Wmissing-prototypes requires trivial changes in some of the tests (making functions local). This patch also rearranges the warnings flags into a separate make variable for convenience, and turns on -Werror, to really encourage people to keep the code warning-clean. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'tests/get_alias.c')
-rw-r--r--tests/get_alias.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/get_alias.c b/tests/get_alias.c
index 8eeaee4..1e0faf4 100644
--- a/tests/get_alias.c
+++ b/tests/get_alias.c
@@ -29,7 +29,7 @@
#include "tests.h"
#include "testdata.h"
-void check_alias(void *fdt, const char *path, const char *alias)
+static void check_alias(void *fdt, const char *path, const char *alias)
{
const char *aliaspath;