From: mike Date: Mon, 17 Oct 2005 13:44:52 +0000 (+0000) Subject: Fix error in comment. X-Git-Tag: cpan_1_22~449 X-Git-Url: http://lists.indexdata.dk/?a=commitdiff_plain;h=508ddb3e82081c0fc4a6077d137a5003c12f2e84;p=ZOOM-Perl-moved-to-github.git Fix error in comment. --- diff --git a/ZOOM.xs b/ZOOM.xs index 78b0508..27b0bdd 100644 --- a/ZOOM.xs +++ b/ZOOM.xs @@ -1,4 +1,4 @@ -/* $Id: ZOOM.xs,v 1.13 2005-10-17 13:42:43 mike Exp $ */ +/* $Id: ZOOM.xs,v 1.14 2005-10-17 13:44:52 mike Exp $ */ #include "EXTERN.h" #include "perl.h" @@ -69,7 +69,7 @@ ZOOM_connection_option_set(c, key, val) # In ZOOM-C, the `val' parameter is const char*. However, our typemap # treats this as T_PV, i.e. it's "known" that it points to a -# NUL-terminated string. Instead, then, I here use const void*, which +# NUL-terminated string. Instead, then, I here use opaquechar*, which # is an opaque pointer. The underlying C function can then use this # along with `len' to Do The Right Thing. #