From: Inkyun Kil Date: Wed, 21 Jun 2017 08:26:27 +0000 (+0900) Subject: Fix trivial fault X-Git-Tag: submit/trunk/20170823.075128~112^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=615716efe3e4918fe57a929b626ba94296cece97;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git Fix trivial fault Change-Id: Ic2c90af3c2c5a4b812085393f1bcb720d8de0385 Signed-off-by: Inkyun Kil --- diff --git a/src/Tizen.Applications.DataControl/Interop/Interop.DataControl.cs b/src/Tizen.Applications.DataControl/Interop/Interop.DataControl.cs index 44bc9e9..b19f6ee 100755 --- a/src/Tizen.Applications.DataControl/Interop/Interop.DataControl.cs +++ b/src/Tizen.Applications.DataControl/Interop/Interop.DataControl.cs @@ -431,7 +431,7 @@ internal static partial class Interop internal static extern ResultType AddDataChangeCallback(SafeDataControlHandle provider, DataChangeCallback callback, IntPtr userData, AddCallbackResultCallback resultCallback, IntPtr resultCbUserData, out int callbackID); - [DllImport(Libraries.DataControl, EntryPoint = "datacontrol_remove_data_change_cb", CallingConvention = CallingConvention.Cdecl)] + [DllImport(Libraries.DataControl, EntryPoint = "data_control_remove_data_change_cb", CallingConvention = CallingConvention.Cdecl)] internal static extern ResultType RemoveDataChangeCallback(SafeDataControlHandle provider, int callbackID); [UnmanagedFunctionPointer(CallingConvention.Cdecl)]