[Spice-devel] [PATCH spice-gtk 1/2] spice-widget-egl: Use sizeof instead of hand coded constant

Frediano Ziglio fziglio at redhat.com
Mon Jul 22 11:25:59 UTC 2019


Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
---
 src/spice-widget-egl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/spice-widget-egl.c b/src/spice-widget-egl.c
index 7bae4e58..7db66082 100644
--- a/src/spice-widget-egl.c
+++ b/src/spice-widget-egl.c
@@ -129,7 +129,7 @@ static gboolean spice_egl_init_shaders(SpiceDisplay *display, GError **err)
     glLinkProgram(d->egl.prog);
     glGetProgramiv(d->egl.prog, GL_LINK_STATUS, &status);
     if (!status) {
-        glGetProgramInfoLog(d->egl.prog, 1000, &len, log);
+        glGetProgramInfoLog(d->egl.prog, sizeof(log), &len, log);
         g_set_error(err, SPICE_CLIENT_ERROR, SPICE_CLIENT_ERROR_FAILED,
                     "error linking shaders: %s", log);
         goto end;
-- 
2.20.1



More information about the Spice-devel mailing list