test_glview: remove warning while compiling the elementary package

Summary:
test_glview.c: In function ‘_print_gl_log’:
test_glview.c:347:10: warning: declaration of ‘log’ shadows a global declaration [-Wshadow]

Reviewers: JackDanielZ

Differential Revision: https://phab.enlightenment.org/D2577

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
Anand 2015-05-26 18:43:09 +02:00 committed by Cedric BAIL
parent 69f5f2ef4c
commit f61f2ac8b2
1 changed files with 6 additions and 6 deletions

View File

@ -344,22 +344,22 @@ static void
_print_gl_log(Evas_GL_API *gl, GLuint id)
{
GLint log_len = 0;
char *log;
char *log_info;
if (gl->glIsShader(id))
gl->glGetShaderiv(id, GL_INFO_LOG_LENGTH, &log_len);
else if (gl->glIsProgram(id))
gl->glGetProgramiv(id, GL_INFO_LOG_LENGTH, &log_len);
log = malloc(log_len * sizeof(char));
log_info = malloc(log_len * sizeof(char));
if (gl->glIsShader(id))
gl->glGetShaderInfoLog(id, log_len, NULL, log);
gl->glGetShaderInfoLog(id, log_len, NULL, log_info);
else if (gl->glIsProgram(id))
gl->glGetProgramInfoLog(id, log_len, NULL, log);
gl->glGetProgramInfoLog(id, log_len, NULL, log_info);
printf("%s", log);
free(log);
printf("%s", log_info);
free(log_info);
}
static void