summaryrefslogtreecommitdiff
path: root/src/palrt
diff options
context:
space:
mode:
authorRajkumar Janakiraman <janakiraman.rajkumar@gmail.com>2016-06-02 12:10:13 -0700
committerJan Kotas <jkotas@microsoft.com>2016-06-02 12:10:13 -0700
commitabb000b51a24500a575461e4a8707a326a232833 (patch)
treeb665ed54b2bccfb0e34d666acc8ede59c03cb921 /src/palrt
parent2fc254794c9a31d02cd995df04176e64d0c13eeb (diff)
downloadcoreclr-abb000b51a24500a575461e4a8707a326a232833.tar.gz
coreclr-abb000b51a24500a575461e4a8707a326a232833.tar.bz2
coreclr-abb000b51a24500a575461e4a8707a326a232833.zip
Fixing GUID_NULL. (#5415)
Diffstat (limited to 'src/palrt')
-rw-r--r--src/palrt/guid.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/palrt/guid.cpp b/src/palrt/guid.cpp
index fcc54e216d..bd782c8502 100644
--- a/src/palrt/guid.cpp
+++ b/src/palrt/guid.cpp
@@ -16,7 +16,7 @@
// These are GUIDs and IIDs that would normally be provided by the system via uuid.lib,
// and that the PALRT exposes through headers.
-DEFINE_GUID(GUID_NULL, 0x00000000, 0x0000, 0x0000, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00);
+DEFINE_GUID(GUID_NULL, 0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00);
DEFINE_GUID(IID_IUnknown, 0x00000000, 0x0000, 0x0000, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46);
DEFINE_GUID(IID_IClassFactory, 0x00000001, 0x0000, 0x0000, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46);