summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Graf <tgraf@suug.ch>2014-07-26 19:33:20 (GMT)
committerThomas Haller <thaller@redhat.com>2014-07-27 09:04:07 (GMT)
commit5329f6a6c792fc444e90e928f3b0ccec303f201a (patch)
tree3de690d6e2eb8007d5a93fa5e9de11a576970b0f
parent99050f22486adfccfad628ab4a314dadbbcedae1 (diff)
downloadlibnl-5329f6a6c792fc444e90e928f3b0ccec303f201a.zip
libnl-5329f6a6c792fc444e90e928f3b0ccec303f201a.tar.gz
libnl-5329f6a6c792fc444e90e928f3b0ccec303f201a.tar.bz2
cache_mngt: Make __nl_cache_ops_lookup() static, it was never declared
Signed-off-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: Thomas Haller <thaller@redhat.com>
-rw-r--r--lib/cache_mngt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cache_mngt.c b/lib/cache_mngt.c
index 4d3d6ff..9f8a742 100644
--- a/lib/cache_mngt.c
+++ b/lib/cache_mngt.c
@@ -38,7 +38,7 @@ static NL_RW_LOCK(cache_ops_lock);
* @{
*/
-struct nl_cache_ops *__nl_cache_ops_lookup(const char *name)
+static struct nl_cache_ops *__nl_cache_ops_lookup(const char *name)
{
struct nl_cache_ops *ops;