From: Vlad S. <ser...@us...> - 2005-06-12 22:34:32
|
Update of /cvsroot/naviserver/modules/nsocaml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18236/nsocaml Modified Files: nsocaml.c Log Message: compiler warnings silence Index: nsocaml.c =================================================================== RCS file: /cvsroot/naviserver/modules/nsocaml/nsocaml.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** nsocaml.c 8 Jun 2005 20:03:48 -0000 1.2 --- nsocaml.c 12 Jun 2005 22:34:23 -0000 1.3 *************** *** 87,96 **** OCAMLCmd(void *context,Tcl_Interp *interp,int objc,Tcl_Obj * CONST objv[]) { value *fn, res, arg = Val_unit; enum commands { cmdCall, cmdLoad ! } cmd; ! static char *sCmd[] = { "call", "load", 0 --- 87,97 ---- OCAMLCmd(void *context,Tcl_Interp *interp,int objc,Tcl_Obj * CONST objv[]) { + int cmd; value *fn, res, arg = Val_unit; enum commands { cmdCall, cmdLoad ! }; ! static const char *sCmd[] = { "call", "load", 0 |