Index: /trunk/processor/head.m4
===================================================================
--- /trunk/processor/head.m4	(revision 294)
+++ /trunk/processor/head.m4	(revision 295)
@@ -89,5 +89,5 @@
 static void xc_dprint_str_len(const char *str, int len) /* {{{ */
 {
-	const unsigned char *p = str;
+	const unsigned char *p = (const unsigned char *) str;
 	int i;
 	for (i = 0; i < len; i ++) {
Index: /trunk/processor/main.m4
===================================================================
--- /trunk/processor/main.m4	(revision 294)
+++ /trunk/processor/main.m4	(revision 295)
@@ -46,5 +46,5 @@
 				unsigned long real = SIZE;
 				if (expect != real) {
-					fprintf(stderr, "mismatch `$@' at line %d(was %d): real %lu - expect %lu = %l\n", __LINE__, atline, real, expect, real - expect);
+					fprintf(stderr, "mismatch `$@' at line %d(was %lu): real %lu - expect %lu = %lu\n", __LINE__, atline, real, expect, real - expect);
 				}
 			}
Index: /trunk/utils.c
===================================================================
--- /trunk/utils.c	(revision 294)
+++ /trunk/utils.c	(revision 295)
@@ -280,5 +280,4 @@
 {
 	zend_op *opline, *begin, *end, *next = NULL;
-	xc_cest_t cest;
 
 	opline = begin = op_array->opcodes;
@@ -325,9 +324,10 @@
 		}
 	}
+	return SUCCESS;
 }
 /* }}} */
 static int xc_do_early_binding(zend_op_array *op_array, HashTable *class_table, int oplineno TSRMLS_DC) /* {{{ */
 {
-	zend_op *opline, *opcodes;
+	zend_op *opline;
 
 #ifdef DEBUG
Index: /trunk/xcache.c
===================================================================
--- /trunk/xcache.c	(revision 294)
+++ /trunk/xcache.c	(revision 295)
@@ -2388,4 +2388,5 @@
 	zend_llist_del_element(&zend_extensions, extension, xc_ptr_compare_func);
 	zend_extensions.dtor = dtor;
+	return SUCCESS;
 }
 /* }}} */
