Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/evas

Dir     : e17/libs/evas/src/lib/file


Modified Files:
        evas_module.c evas_path.c 


Log Message:
Add const.
Remove unused variables.

===================================================================
RCS file: /cvs/e/e17/libs/evas/src/lib/file/evas_module.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- evas_module.c       23 Apr 2006 15:38:23 -0000      1.15
+++ evas_module.c       31 May 2006 18:33:45 -0000      1.16
@@ -133,7 +133,6 @@
 {
    Evas_List *l;
    int new_id_engine = 1;
-   int new_id_loader = 1;
    
 /*    printf("[init modules]\n"); */
    evas_module_paths_init();
===================================================================
RCS file: /cvs/e/e17/libs/evas/src/lib/file/evas_path.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- evas_path.c 14 Jan 2006 12:13:36 -0000      1.11
+++ evas_path.c 31 May 2006 18:33:45 -0000      1.12
@@ -20,7 +20,7 @@
 #include "evas_private.h"
 
 int
-evas_file_path_is_full_path(char *path)
+evas_file_path_is_full_path(const char *path)
 {
    if (!path) return 0;
    if (path[0] == '/') return 1;
@@ -48,7 +48,7 @@
 }
 
 int
-evas_file_path_exists(char *path)
+evas_file_path_exists(const char *path)
 {
    struct stat st;
 
@@ -57,7 +57,7 @@
 }
 
 int
-evas_file_path_is_file(char *path)
+evas_file_path_is_file(const char *path)
 {
    struct stat st;
 
@@ -67,7 +67,7 @@
 }
 
 int
-evas_file_path_is_dir(char *path)
+evas_file_path_is_dir(const char *path)
 {
    struct stat st;
 




_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to