From e18954c3160c21f8be83721c406b74fed7ec38f1 Mon Sep 17 00:00:00 2001 From: Felix Janda Date: Tue, 26 Sep 2017 18:38:35 -0400 Subject: [PATCH 4/4] gen_symbol_version_map.awk: fix typo --- scripts/gen_symbol_version_map.awk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gen_symbol_version_map.awk b/scripts/gen_symbol_version_map.awk index a0a43c0..19155e3 100644 --- a/scripts/gen_symbol_version_map.awk +++ b/scripts/gen_symbol_version_map.awk @@ -14,7 +14,7 @@ BEGIN { # Only check FUNCtion symbols which are not LOCAL, or # do not have DEFAULT visibility - if ($4 != "FUNC" || $5 == "LOCAL" || $6 != "DEFAULT") + if ($4 != "FUNC" || $5 == "LOCAL" || $6 == "DEFAULT") next; for (x in SYMBOLS) { -- 2.13.5