summaryrefslogtreecommitdiff
path: root/cogl/test-fixtures
diff options
context:
space:
mode:
authorJonas Ådahl <jadahl@gmail.com>2019-01-20 11:41:48 +0100
committerJonas Ådahl <jadahl@gmail.com>2019-01-22 18:31:52 +0100
commit982d135ace41ffd6ff0eb879e3d600ad1f2cd839 (patch)
treeab6036bedab6c68f14eace6fe29835e091962fd3 /cogl/test-fixtures
parent548c0f16f4fc2c064b06532401002d1a19eedd47 (diff)
downloadmutter-982d135ace41ffd6ff0eb879e3d600ad1f2cd839.tar.gz
cogl: Add missing function declarations
In plenty of places a non-static function was defined but didn't have the corresponding declaration. Fix this by adding them, or alternatively making them static.
Diffstat (limited to 'cogl/test-fixtures')
-rw-r--r--cogl/test-fixtures/test-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cogl/test-fixtures/test-utils.c b/cogl/test-fixtures/test-utils.c
index e920dd8f6..02494be42 100644
--- a/cogl/test-fixtures/test-utils.c
+++ b/cogl/test-fixtures/test-utils.c
@@ -98,7 +98,7 @@ check_flags (TestFlags flags,
return TRUE;
}
-CoglBool
+static CoglBool
is_boolean_env_set (const char *variable)
{
char *val = getenv (variable);