Skip to content

Commit 171a3ed

Browse files
committed
[NTOSKRNL]
Get rid off TAG macro svn path=/trunk/; revision=55929
1 parent bc96c38 commit 171a3ed

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

reactos/ntoskrnl/fsrtl/notify.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ FsRtlNotifyInitializeSync(IN PNOTIFY_SYNC *NotifySync)
495495
*NotifySync = NULL;
496496

497497
RealNotifySync = ExAllocatePoolWithTag(NonPagedPool | POOL_RAISE_IF_ALLOCATION_FAILURE,
498-
sizeof(REAL_NOTIFY_SYNC), TAG('F', 'S', 'N', 'S'));
498+
sizeof(REAL_NOTIFY_SYNC), 'FSNS');
499499
ExInitializeFastMutex(&(RealNotifySync->FastMutex));
500500
RealNotifySync->OwningThread = 0;
501501
RealNotifySync->OwnerCount = 0;
@@ -570,7 +570,7 @@ FsRtlNotifyUninitializeSync(IN PNOTIFY_SYNC *NotifySync)
570570
{
571571
if (*NotifySync)
572572
{
573-
ExFreePoolWithTag(*NotifySync, TAG('F', 'S', 'N', 'S'));
573+
ExFreePoolWithTag(*NotifySync, 'FSNS');
574574
*NotifySync = NULL;
575575
}
576576
}

reactos/ntoskrnl/include/internal/fsrtl.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@
66
* PROGRAMMERS: Alex Ionescu ([email protected])
77
*/
88

9-
#ifndef TAG
10-
#define TAG(w,x,y,z) (((w)<<24)|((x)<<16)|((y)<<8)|(z))
11-
#endif
12-
139
//
1410
// Define this if you want debugging support
1511
//

0 commit comments

Comments
 (0)