Description: compile with -Wformat hardening flags
Origin: http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/saucy/gtkgl2/saucy/revision/9?start_revid=9&remember=9

--- a/examples/shaders.c
+++ b/examples/shaders.c
@@ -147,7 +147,7 @@
      glGetShaderiv(shader_id, GL_INFO_LOG_LENGTH, &infologLength);
      infoLog = malloc(sizeof(GLchar) * infologLength);
      glGetShaderInfoLog(shader_id, infologLength, &charsWritten, infoLog);
-     g_print(infoLog);
+     g_print("%s", infoLog);
      free(infoLog);
    }
 }
--- a/examples/simple.c
+++ b/examples/simple.c
@@ -161,7 +161,7 @@
 
   /* vendor dependent version info string */
   info_str = gdk_gl_get_info();
-  g_print(info_str);
+  g_print("%s", info_str);
   g_free(info_str);
 
   gtk_main();
