diff options
author | Hans de Graaff <hans@degraaff.org> | 2014-08-22 17:50:39 +0200 |
---|---|---|
committer | Hans de Graaff <hans@degraaff.org> | 2014-08-22 17:50:39 +0200 |
commit | fbf8026f39c8c3c2c1c740769a533159ff0606f2 (patch) | |
tree | 1abe63877e60a9c9a130b07f8474d34af7d63918 /ext | |
parent | Fix compatibility with fcgi 0.9. (diff) | |
download | gorg-master.tar.gz gorg-master.tar.bz2 gorg-master.zip |
Diffstat (limited to 'ext')
-rw-r--r-- | ext/gorg/xsl/xsl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gorg/xsl/xsl.c b/ext/gorg/xsl/xsl.c index c1a9a94..5eccd43 100644 --- a/ext/gorg/xsl/xsl.c +++ b/ext/gorg/xsl/xsl.c @@ -383,7 +383,7 @@ void my_raise(VALUE obj, s_cleanup *clean, VALUE rbExcep, char *err) // Raise exception if requested to if (rbExcep != Qnil) { - rb_raise(rbExcep, err); + rb_raise(rbExcep, "%s", err); } } |