summaryrefslogtreecommitdiff
path: root/gobject-introspection
diff options
context:
space:
mode:
authorJuerg Billeter <j@bitron.ch>2007-11-22 20:16:55 +0000
committerJürg Billeter <juergbi@src.gnome.org>2007-11-22 20:16:55 +0000
commitd27b516a71f807cda6a1f1dcd455684d884b2886 (patch)
tree3f7e5f8986d762fea43934f4c7c46e6d4e8df3a4 /gobject-introspection
parent167431f969d10a83eb459d3d98617b21b2c12c49 (diff)
downloadvala-d27b516a71f807cda6a1f1dcd455684d884b2886.tar.gz
fix value of string constants
2007-11-22 Juerg Billeter <j@bitron.ch> * gobject-introspection/gen-introspect.c: fix value of string constants * vapi/packages/gstreamer-0.10/gstreamer-0.10.gi: regenerated svn path=/trunk/; revision=707
Diffstat (limited to 'gobject-introspection')
-rw-r--r--gobject-introspection/gen-introspect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gobject-introspection/gen-introspect.c b/gobject-introspection/gen-introspect.c
index c25c61c0a..22b12a23c 100644
--- a/gobject-introspection/gen-introspect.c
+++ b/gobject-introspection/gen-introspect.c
@@ -66,7 +66,7 @@ GIGenerator *g_igenerator_new (void)
static void g_igenerator_write_inline (GIGenerator *igenerator, const char *s)
{
- fprintf (stdout, s);
+ fprintf (stdout, "%s", s);
}
static void g_igenerator_write (GIGenerator *igenerator, const char *s)