- Get rid of TAG() from the kernel
[reactos.git] / reactos / ntoskrnl / ex / handle.c
index d1d5d4e..18ab69f 100644 (file)
@@ -131,7 +131,7 @@ ExpAllocateTablePagedPool(IN PEPROCESS Process OPTIONAL,
     PVOID Buffer;
 
     /* Do the allocation */
-    Buffer = ExAllocatePoolWithTag(PagedPool, Size, TAG('O', 'b', 't', 'b'));
+    Buffer = ExAllocatePoolWithTag(PagedPool, Size, 'btbO');
     if (Buffer)
     {
         /* Clear the memory */
@@ -156,7 +156,7 @@ ExpAllocateTablePagedPoolNoZero(IN PEPROCESS Process OPTIONAL,
     PVOID Buffer;
 
     /* Do the allocation */
-    Buffer = ExAllocatePoolWithTag(PagedPool, Size, TAG('O', 'b', 't', 'b'));
+    Buffer = ExAllocatePoolWithTag(PagedPool, Size, 'btbO');
     if (Buffer)
     {
         /* Check if we have a process to charge quota */
@@ -344,7 +344,7 @@ ExpAllocateHandleTable(IN PEPROCESS Process OPTIONAL,
     /* Allocate the table */
     HandleTable = ExAllocatePoolWithTag(PagedPool,
                                         sizeof(HANDLE_TABLE),
-                                        TAG('O', 'b', 't', 'b'));
+                                        'btbO');
     if (!HandleTable) return NULL;
 
     /* Check if we have a process */