Skip to content

Commit 1501452

Browse files
committed
[runtime] Fixed typo.
There was a call to addImageAccessibleFunctionBlockCallbackUnsafe but no function with that name. Change the called function to addImageAccessibleFunctionsBlockCallbackUnsafe.
1 parent d48306c commit 1501452

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/runtime/ImageInspectionStatic.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ void swift::initializeAccessibleFunctionsLookup() {
8181
MachOAccessibleFunctionsSection);
8282
if (start == nullptr || size == 0)
8383
return;
84-
addImageAccessibleFunctionBlockCallbackUnsafe(start, size);
84+
addImageAccessibleFunctionsBlockCallbackUnsafe(start, size);
8585
}
8686

8787
#endif // defined(__MACH__) && defined(SWIFT_RUNTIME_STATIC_IMAGE_INSPECTION)

0 commit comments

Comments
 (0)