diff options
author | Matt Turner <[email protected]> | 2017-07-09 14:12:31 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2017-08-21 14:45:44 -0700 |
commit | ca73c3358c91434e68ab31c23d13986d87c661cd (patch) | |
tree | e3fe5a12f3be5dfaceb699418c1822d495a2d4c8 /src/compiler/glsl/main.cpp | |
parent | d37d9f84ac563f106b7209a319492babad560b9f (diff) |
glsl: Mark functions static
Cuts 3224 bytes of .text
Reviewed-by: Jordan Justen <[email protected]>
Diffstat (limited to 'src/compiler/glsl/main.cpp')
-rw-r--r-- | src/compiler/glsl/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/glsl/main.cpp b/src/compiler/glsl/main.cpp index e0d3ab75d16..123e41f9dcc 100644 --- a/src/compiler/glsl/main.cpp +++ b/src/compiler/glsl/main.cpp @@ -52,7 +52,7 @@ const struct option compiler_opts[] = { /** * \brief Print proper usage and exit with failure. */ -void +static void usage_fail(const char *name) { |