https://git.reactos.org/?p=reactos.git;a=commitdiff;h=fcd00d412e215d8e62524bf2e49133e0ecb5d182

commit fcd00d412e215d8e62524bf2e49133e0ecb5d182
Author:     Thomas Faber <[email protected]>
AuthorDate: Sun Jul 7 08:22:16 2019 +0200
Commit:     Thomas Faber <[email protected]>
CommitDate: Sun Jul 7 08:22:16 2019 +0200

    [NDIS] INIT/PAGE sections must be uppercase.
---
 sdk/include/ddk/ndis.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sdk/include/ddk/ndis.h b/sdk/include/ddk/ndis.h
index 916ba98e556..c5f1dd58514 100644
--- a/sdk/include/ddk/ndis.h
+++ b/sdk/include/ddk/ndis.h
@@ -4482,14 +4482,14 @@ NdisGetCurrentProcessorCpuUsage(
  * NDIS_INIT_FUNCTION(FunctionName)
  */
 #define NDIS_INIT_FUNCTION(FunctionName)    \
-  alloc_text(init, FunctionName)
+  alloc_text(INIT, FunctionName)
 
 /*
  * VOID
  * NDIS_PAGABLE_FUNCTION(FunctionName)
  */
 #define NDIS_PAGEABLE_FUNCTION(FunctionName) \
-  alloc_text(page, FunctionName)
+  alloc_text(PAGE, FunctionName)
 
 #define NDIS_PAGABLE_FUNCTION NDIS_PAGEABLE_FUNCTION
 

Reply via email to