Hi,
and before you ask, the next error:

Compiling ../common/jk_worker.c
### mwccnlm Compiler:
#    File: ..\common\jk_worker.c
# ------------------------------
#      52:                              we->num_of_workers)) {
#   Error:                                                ^
#   illegal implicit conversion from 'int' to
#   'unsigned int *'

can be fixed for the moment with:

--- jk_worker.c.orig    Sun Feb 13 23:44:08 2005
+++ jk_worker.c Sun Feb 13 23:59:50 2005
@@ -49,7 +49,7 @@
     }
 
     if (!jk_get_worker_list(init_data, &(we->worker_list),
-                            we->num_of_workers)) {
+                            (unsigned int *)&we->num_of_workers)) {
         JK_TRACE_EXIT(l);
         we->num_of_workers = 0;
         we->worker_list = NULL;


however at the moment I cant find find the heck where the type mismatch really 
is...

Mladen: please take a look at jk_lc_worker.c where a couple of times 
num_of_workers is defined as int instead of unsigned...

Guenter.



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to