summaryrefslogtreecommitdiffstats
path: root/bindings/php5
diff options
context:
space:
mode:
authorBenjamin Dauvergne <bdauvergne@entrouvert.com>2010-02-01 19:50:09 +0000
committerBenjamin Dauvergne <bdauvergne@entrouvert.com>2010-02-01 19:50:09 +0000
commit0c67831f552607514700b5f27952f8fb1b6809cf (patch)
treeba0ec66f0a1696f3b42f1a597320044f67b5c352 /bindings/php5
parent7385277cebe64fff044af60631675977a1980fd9 (diff)
downloadlasso-0c67831f552607514700b5f27952f8fb1b6809cf.tar.gz
lasso-0c67831f552607514700b5f27952f8fb1b6809cf.tar.xz
lasso-0c67831f552607514700b5f27952f8fb1b6809cf.zip
Bindings: use lasso_return_xxx macros instead of GLib ones
Diffstat (limited to 'bindings/php5')
-rw-r--r--bindings/php5/wrapper_source_top.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/php5/wrapper_source_top.c b/bindings/php5/wrapper_source_top.c
index 74c67eb8..ebb8eb62 100644
--- a/bindings/php5/wrapper_source_top.c
+++ b/bindings/php5/wrapper_source_top.c
@@ -85,7 +85,7 @@ static void php_gobject_generic_destructor(zend_rsrc_list_entry *rsrc TSRMLS_DC)
/* List handling */
static void
free_glist(GList **list, GFunc free_function) {
- g_return_if_fail(list);
+ lasso_return_if_fail(list);
if (*list) {
if (free_function) {
g_list_foreach(*list, free_function, NULL);