Skip to content

Commit 8d65c78

Browse files
committed
Missed a rename
1 parent 8129d3d commit 8d65c78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Sentry.Unity.Native/SentryNativeBridge.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ private static void nativeLogImpl(int cLevel, IntPtr format, IntPtr args, IntPtr
262262
}
263263
else
264264
{
265-
var formattedLength = 1 + vsnprintf_sentry(IntPtr.Zero, UIntPtr.Zero, format, args);
265+
var formattedLength = 1 + vsnprintf(IntPtr.Zero, UIntPtr.Zero, format, args);
266266
WithAllocatedPtr(formattedLength, buffer =>
267267
{
268268
vsnprintf(buffer, (UIntPtr)formattedLength, format, args);

0 commit comments

Comments
 (0)