csharp: Add missing prefix to enable interpolation

Reviewers: vitor.sousa

Reviewed By: vitor.sousa

Subscribers: cedric, #reviewers, #committers

Tags: #efl, #expertise_solutions

Differential Revision: https://phab.enlightenment.org/D9195
This commit is contained in:
Lauro Moura 2019-06-27 19:21:28 -03:00 committed by Vitor Sousa
parent 03936c0513
commit accaaa1ff7
1 changed files with 2 additions and 2 deletions

View File

@ -18,9 +18,9 @@ public partial class FunctionInterop
///<returns>A function pointer that can be used with delegates.</returns>
public static IntPtr LoadFunctionPointer(IntPtr nativeLibraryHandle, string functionName)
{
Eina.Log.Debug("searching {nativeLibraryHandle} for {functionName}");
Eina.Log.Debug($"searching {nativeLibraryHandle} for {functionName}");
var s = FunctionInterop.dlsym(nativeLibraryHandle, functionName);
Eina.Log.Debug("searching {nativeLibraryHandle} for {functionName}, result {s}");
Eina.Log.Debug($"searching {nativeLibraryHandle} for {functionName}, result {s}");
return s;
}
}