Skip to content

Commit 4b3a656

Browse files
committed
Fix merge
***NO_CI***
1 parent 22b35c6 commit 4b3a656

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/CLR/CorLib/corlib_native_System_Guid.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//
1+
//
22
// Copyright (c) .NET Foundation and Contributors
33
// Portions Copyright (c) Microsoft Corporation. All rights reserved.
44
// See LICENSE file in the project root for full license information.
@@ -15,7 +15,7 @@ HRESULT Library_corlib_native_System_Guid::GenerateNewGuid___STATIC__SZARRAY_U1(
1515
CLR_RT_HeapBlock &top = stack.PushValueAndClear();
1616

1717
// Create a array of 16 bytes on top of stack to return
18-
NANOCLR_CHECK_HRESULT(CLR_RT_HeapBlock_Array::CreateInstance(top, 16, g_CLR_RT_WellKnownTypes.m_UInt8));
18+
NANOCLR_CHECK_HRESULT(CLR_RT_HeapBlock_Array::CreateInstance(top, 16, g_CLR_RT_WellKnownTypes.UInt8));
1919
buf = top.DereferenceArray()->GetFirstElement();
2020

2121
rand.Initialize();

0 commit comments

Comments
 (0)