From fe3f1999e42a3aaa42130717774249aa987d329a Mon Sep 17 00:00:00 2001 From: Benjamin Michaelis Date: Tue, 26 Mar 2024 19:56:42 -0700 Subject: [PATCH] Fixes #733 --- src/Chapter23/Listing23.02.TheVirtualAllocExAPI.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Chapter23/Listing23.02.TheVirtualAllocExAPI.cs b/src/Chapter23/Listing23.02.TheVirtualAllocExAPI.cs index 2df714e10..ad0b7d7e2 100644 --- a/src/Chapter23/Listing23.02.TheVirtualAllocExAPI.cs +++ b/src/Chapter23/Listing23.02.TheVirtualAllocExAPI.cs @@ -17,6 +17,6 @@ LPVOID VirtualAllocEx( // is NULL, the function rounds dwSize // up to the next page boundary. DWORD flAllocationType, // The type of memory allocation - DWORD flProtect); // The type of memory allocation + DWORD flProtect); // The type of memory protection #endregion INCLUDE } \ No newline at end of file