Enlightenment CVS committal Author : chaos Project : e17 Module : apps/evfs
Dir : e17/apps/evfs/src/lib Modified Files: libevfs.c Log Message: * Cleanup warnings =================================================================== RCS file: /cvs/e/e17/apps/evfs/src/lib/libevfs.c,v retrieving revision 1.47 retrieving revision 1.48 diff -u -3 -r1.47 -r1.48 --- libevfs.c 14 Aug 2006 10:15:09 -0000 1.47 +++ libevfs.c 13 Sep 2006 10:04:27 -0000 1.48 @@ -1,4 +1,5 @@ #include "evfs.h" +#include <ctype.h> #define MAX_ATTEMPTS 5 @@ -129,6 +130,8 @@ } } } + + return 1; } int @@ -249,7 +252,6 @@ char tmp_tok[255]; /*This need to be longer? */ int i = 0; int j = 1; - char c = '1'; int len = 0; char tagged = 0; @@ -278,7 +280,7 @@ while (j <= strlen(dup_uri)) { - new_alpha = isalnum(l_uri[i]) | l_uri[i] == '.'; + new_alpha = (isalnum(l_uri[i]) | l_uri[i] == '.'); len = 0; tagged = 0; @@ -456,10 +458,7 @@ evfs_filereference * evfs_parse_uri_single(char *uri) { - char *pos; - char *tok; evfs_uri_token *token; - int i; evfs_filereference *ref = NULL, *new_ref = NULL, *root_ref = NULL, *bottom_ref = NULL; Ecore_DList *tokens; ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs