Author: julianalbo
Date: Sat Dec  6 04:39:17 2008
New Revision: 33549

Modified:
   trunk/src/pmc/exception.pmc

Log:
fix exception.pmc:get_bool

Modified: trunk/src/pmc/exception.pmc
==============================================================================
--- trunk/src/pmc/exception.pmc (original)
+++ trunk/src/pmc/exception.pmc Sat Dec  6 04:39:17 2008
@@ -176,7 +176,7 @@
 
 /*
 
-=item C<STRING *get_bool()>
+=item C<INTVAL get_bool()>
 
 Return true.
 
@@ -184,8 +184,8 @@
 
 */
 
-    VTABLE INTVAL *get_bool() {
-        return (INTVAL)1;
+    VTABLE INTVAL get_bool() {
+        return 1;
     }
 
 /*

Reply via email to