renmae variable to prevent name clash
authorenglebass <englebass@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 9 Feb 2011 17:10:00 +0000 (17:10 +0000)
committerenglebass <englebass@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 9 Feb 2011 17:10:00 +0000 (17:10 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/ecore@56856 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/ecore_file/ecore_file.c

index f9b93d8..cd29a33 100644 (file)
@@ -767,7 +767,7 @@ ecore_file_can_exec(const char *file)
 /**
  * @brief Get the path pointed by the given link.
  *
- * @param  link The name of the link.
+ * @param  lnk The name of the link.
  * @return The path pointed by link or NULL.
  *
  * This function returns the path pointed by @p link as a newly
@@ -776,12 +776,12 @@ ecore_file_can_exec(const char *file)
  * returned value must be freed.
  */
 EAPI char *
-ecore_file_readlink(const char *link)
+ecore_file_readlink(const char *lnk)
 {
    char buf[PATH_MAX];
    int count;
 
-   if ((count = readlink(link, buf, sizeof(buf) - 1)) < 0) return NULL;
+   if ((count = readlink(lnk, buf, sizeof(buf) - 1)) < 0) return NULL;
    buf[count] = 0;
    return strdup(buf);
 }