about summary refs log tree commit diff
path: root/elf/dl-runtime.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/dl-runtime.c')
-rw-r--r--elf/dl-runtime.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/elf/dl-runtime.c b/elf/dl-runtime.c
index be5d8b68ad..de4639a3d0 100644
--- a/elf/dl-runtime.c
+++ b/elf/dl-runtime.c
@@ -87,18 +87,18 @@ fixup (
 
 	    if (version->hash != 0)
 	      {
-		result = INT(_dl_lookup_versioned_symbol) (strtab
-							   + sym->st_name,
-							   l, &sym, l->l_scope,
-							   version,
-							   ELF_RTYPE_CLASS_PLT,
-							   0);
+		result = INTUSE(_dl_lookup_versioned_symbol) (strtab
+							      + sym->st_name,
+							      l, &sym, l->l_scope,
+							      version,
+							      ELF_RTYPE_CLASS_PLT,
+							      0);
 		break;
 	      }
 	  }
 	case 0:
-	  result = INT(_dl_lookup_symbol) (strtab + sym->st_name, l, &sym,
-					   l->l_scope, ELF_RTYPE_CLASS_PLT, 0);
+	  result = INTUSE(_dl_lookup_symbol) (strtab + sym->st_name, l, &sym,
+					      l->l_scope, ELF_RTYPE_CLASS_PLT, 0);
 	}
 
       /* Currently result contains the base load address (or link map)
@@ -181,20 +181,20 @@ profile_fixup (
 
 		if (version->hash != 0)
 		  {
-		    result = INT(_dl_lookup_versioned_symbol) (strtab
-							       + sym->st_name,
-							       l, &sym,
-							       l->l_scope,
-							       version,
-							       ELF_RTYPE_CLASS_PLT,
-							       0);
+		    result = INTUSE(_dl_lookup_versioned_symbol) (strtab
+								  + sym->st_name,
+								  l, &sym,
+								  l->l_scope,
+								  version,
+								  ELF_RTYPE_CLASS_PLT,
+								  0);
 		    break;
 		  }
 	      }
 	    case 0:
-	      result = INT(_dl_lookup_symbol) (strtab + sym->st_name, l, &sym,
-					       l->l_scope, ELF_RTYPE_CLASS_PLT,
-					       0);
+	      result = INTUSE(_dl_lookup_symbol) (strtab + sym->st_name, l, &sym,
+						  l->l_scope, ELF_RTYPE_CLASS_PLT,
+						  0);
 	    }
 
 	  /* Currently result contains the base load address (or link map)