From: espen Date: Fri, 7 Sep 2007 07:32:26 +0000 (+0000) Subject: Bug fix X-Git-Tag: clg-0-93~79 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/commitdiff_plain/ed6c124746d9b283c490a5a7780f13f0ac15ee46?ds=sidebyside Bug fix --- diff --git a/glib/gerror.lisp b/glib/gerror.lisp index bdedc0d..e12edbe 100644 --- a/glib/gerror.lisp +++ b/glib/gerror.lisp @@ -20,7 +20,7 @@ ;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -;; $Id: gerror.lisp,v 1.7 2006/04/28 08:27:22 espen Exp $ +;; $Id: gerror.lisp,v 1.8 2007/09/07 07:32:26 espen Exp $ (in-package "GLIB") @@ -30,8 +30,8 @@ (defclass gerror (struct) (code :allocation :alien :type int :reader gerror-code) (message :allocation :alien :type string :reader gerror-message)) (:metaclass struct-class) - (:ref gerror-copy) - (:unref gerror-free)) + (:ref %gerror-copy) + (:unref %gerror-free)) (defbinding (%gerror-copy "g_error_copy") () pointer (location pointer))