From 37a9f01adced7b062f80b1d4365cf840f0561796 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Thu, 23 Jul 2009 17:39:12 -0500 Subject: [PATCH] fix typo in x11 binding --- basis/x11/xlib/xlib.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/x11/xlib/xlib.factor b/basis/x11/xlib/xlib.factor index 65338dc88b..c8a4bfa0dc 100644 --- a/basis/x11/xlib/xlib.factor +++ b/basis/x11/xlib/xlib.factor @@ -477,7 +477,7 @@ C-STRUCT: XImage { "XImage-funcs" "f" } ; X-FUNCTION: XImage* XGetImage ( Display* display, Drawable d, int x, int y, uint width, uint height, ulong plane_mask, int format ) ; -X-FUNCTION: int XDestroyImage ( XImage *ximage ) ; +X-FUNCTION: int XDestroyImage ( XImage* ximage ) ; : XImage-size ( ximage -- size ) [ XImage-height ] [ XImage-bytes_per_line ] bi * ;