From f6ad0938015505eb1ed5804c4a35825cb03673f3 Mon Sep 17 00:00:00 2001 From: Serge Gautherie <32623169+SergeGautherie@users.noreply.github.com> Date: Tue, 10 Dec 2019 13:16:26 +0100 Subject: [PATCH] [CMD] Fix 'MAX_ULONG' typo in a comment (#2143) --- base/shell/cmd/cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/shell/cmd/cmd.c b/base/shell/cmd/cmd.c index 5a3651d935f..2b63948d94e 100644 --- a/base/shell/cmd/cmd.c +++ b/base/shell/cmd/cmd.c @@ -1605,7 +1605,7 @@ LoadRegistrySettings(HKEY hKeyRoot) DWORD dwType, len; /* * Buffer big enough to hold the string L"4294967295", - * corresponding to the literal 0xFFFFFFFF (MAX_ULONG) in decimal. + * corresponding to the literal 0xFFFFFFFF (MAXULONG) in decimal. */ DWORD Buffer[6];