From b05cae250c34764d6055cf3ee898efbab42565ba Mon Sep 17 00:00:00 2001 From: JinYong Park Date: Fri, 13 Oct 2017 14:02:31 -0700 Subject: ecore_file: rename parameter for doxygen Summary: Some parameter's name are different in annotations and statements, so it occurs doxygen warning. To fix it, rename that parameters. Test Plan: API Doxygen Revision Reviewers: raster, cedric, jpeg, myoungwoon, Jaehyun_Cho Reviewed By: cedric Differential Revision: https://phab.enlightenment.org/D5313 Signed-off-by: Cedric Bail --- src/lib/ecore_file/ecore_file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/ecore_file/ecore_file.c') diff --git a/src/lib/ecore_file/ecore_file.c b/src/lib/ecore_file/ecore_file.c index f5c15b6e60..14c1934853 100644 --- a/src/lib/ecore_file/ecore_file.c +++ b/src/lib/ecore_file/ecore_file.c @@ -631,12 +631,12 @@ ecore_file_can_exec(const char *file) } EAPI char * -ecore_file_readlink(const char *lnk) +ecore_file_readlink(const char *link) { char buf[PATH_MAX]; int count; - if ((count = readlink(lnk, buf, sizeof(buf) - 1)) < 0) return NULL; + if ((count = readlink(link, buf, sizeof(buf) - 1)) < 0) return NULL; buf[count] = 0; return strdup(buf); } -- cgit v1.2.1