From bbc9204bfed8218af73369cc2420abdad9f1952e Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Sat, 30 Jul 2022 20:53:05 +1000 Subject: [PATCH] [client] egl: ensure the preprocessed files have a null terminator --- client/renderers/EGL/glsl.include.awk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/renderers/EGL/glsl.include.awk b/client/renderers/EGL/glsl.include.awk index 1286a40e..1c050e47 100644 --- a/client/renderers/EGL/glsl.include.awk +++ b/client/renderers/EGL/glsl.include.awk @@ -10,4 +10,4 @@ function process(line, second) { } } -{ process($0, $2) } +{ process($0, $2) } END { print "\0"; }