diff options
author | Neil Roberts <[email protected]> | 2014-11-13 15:31:44 +0000 |
---|---|---|
committer | Neil Roberts <[email protected]> | 2014-11-13 16:46:12 +0000 |
commit | 352f8f2d1398f32934f9f8cf0eb4b5c6fd9f763e (patch) | |
tree | 84f6c07de4a4e9ffbe11345b1b0c819be3febcba | |
parent | d5b1731178378b3d828c74368f6bfe85edc10618 (diff) |
linker: Add a missing space in an error message
Reviewed-by: Brian Paul <[email protected]>
-rw-r--r-- | src/glsl/linker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/linker.cpp b/src/glsl/linker.cpp index bd2aa3cedf0..41d6a82cf71 100644 --- a/src/glsl/linker.cpp +++ b/src/glsl/linker.cpp @@ -2411,7 +2411,7 @@ reserve_explicit_locations(struct gl_shader_program *prog, * or linker error will be generated." */ linker_error(prog, - "location qualifier for uniform %s overlaps" + "location qualifier for uniform %s overlaps " "previously used location", var->name); return false; |