From bc0a605e8864324d40aafbd00e8de0e50240ce26 Mon Sep 17 00:00:00 2001 From: Bastian Müller Date: Wed, 24 Apr 2019 13:36:02 -0700 Subject: Fix typo in C API: BinaryeGlobalImportGetModule -> BinaryenGlobalImportGetModule (#2047) --- src/binaryen-c.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/binaryen-c.h b/src/binaryen-c.h index 5c5213383..7478a4642 100644 --- a/src/binaryen-c.h +++ b/src/binaryen-c.h @@ -898,7 +898,7 @@ void BinaryenFunctionSetDebugLocation(BinaryenFunctionRef func, BinaryenExpressi // Gets the external module name of the specified import. const char* BinaryenFunctionImportGetModule(BinaryenFunctionRef import); -const char* BinaryeGlobalImportGetModule(BinaryenGlobalRef import); +const char* BinaryenGlobalImportGetModule(BinaryenGlobalRef import); // Gets the external base name of the specified import. const char* BinaryenFunctionImportGetBase(BinaryenFunctionRef import); const char* BinaryenGlobalImportGetBase(BinaryenGlobalRef import); -- cgit v1.2.3