From 182d91f35b9877293ec7e2c40859616e7d085fdb Mon Sep 17 00:00:00 2001 From: Dmitriy Yakovlev Date: Sat, 16 Apr 2016 01:58:43 +0300 Subject: [PATCH] cfgfile: fix return value comment Function rte_cfgfile_load can return NULL value, when something goes wrong. Signed-off-by: Dmitriy Yakovlev Acked-by: Cristian Dumitrescu --- lib/librte_cfgfile/rte_cfgfile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_cfgfile/rte_cfgfile.h b/lib/librte_cfgfile/rte_cfgfile.h index 834f82873b..f649836c63 100644 --- a/lib/librte_cfgfile/rte_cfgfile.h +++ b/lib/librte_cfgfile/rte_cfgfile.h @@ -72,7 +72,7 @@ struct rte_cfgfile_entry { * @param flags * Config file flags, Reserved for future use. Must be set to 0. * @return -* Handle to configuration file +* Handle to configuration file on success, NULL otherwise */ struct rte_cfgfile *rte_cfgfile_load(const char *filename, int flags); -- 2.20.1