diff options
author | JinYong Park <j4939.park@samsung.com> | 2017-10-13 14:02:31 -0700 |
---|---|---|
committer | Cedric Bail <cedric@osg.samsung.com> | 2017-10-13 14:02:37 -0700 |
commit | b05cae250c34764d6055cf3ee898efbab42565ba (patch) | |
tree | fe3710b8ad31e3651ac02d01cfd33a5e1cbd3f42 /src/lib/ecore_file/ecore_file.c | |
parent | 377a68561987c8fc1bdd33842488683b2a7e8a8b (diff) |
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 <cedric@osg.samsung.com>
Diffstat (limited to '')
-rw-r--r-- | src/lib/ecore_file/ecore_file.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) | |||
631 | } | 631 | } |
632 | 632 | ||
633 | EAPI char * | 633 | EAPI char * |
634 | ecore_file_readlink(const char *lnk) | 634 | ecore_file_readlink(const char *link) |
635 | { | 635 | { |
636 | char buf[PATH_MAX]; | 636 | char buf[PATH_MAX]; |
637 | int count; | 637 | int count; |
638 | 638 | ||
639 | if ((count = readlink(lnk, buf, sizeof(buf) - 1)) < 0) return NULL; | 639 | if ((count = readlink(link, buf, sizeof(buf) - 1)) < 0) return NULL; |
640 | buf[count] = 0; | 640 | buf[count] = 0; |
641 | return strdup(buf); | 641 | return strdup(buf); |
642 | } | 642 | } |