Skip to content

Commit

Permalink
space after compiled
Browse files Browse the repository at this point in the history
  • Loading branch information
patriciogonzalezvivo committed Feb 21, 2017
1 parent 118a32a commit 60491ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gl/shader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ GLuint Shader::compileShader(const std::string* _path, const std::string& _src,
std::cerr << (isCompiled ? "Warnings" : "Errors");
std::cerr << " while compiling ";
std::cerr << (_path ? *_path : "shader");
std::cerr << ":\n" << &infoLog[0];
std::cerr << ":\n" << &infoLog[0] << std::endl;
}

if (isCompiled == GL_FALSE) {
Expand Down

0 comments on commit 60491ad

Please sign in to comment.