From e36497a7084c8877eae2defbebf0d8ac4af71e05 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Mon, 21 Jun 2010 04:36:32 +0000 Subject: [PATCH] [NTOSKRNL] - Resource translation isn't very effective when we don't store the translated value in the translated descriptor (Fix a typo) svn path=/trunk/; revision=47815 --- reactos/ntoskrnl/io/pnpmgr/pnpres.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/io/pnpmgr/pnpres.c b/reactos/ntoskrnl/io/pnpmgr/pnpres.c index 2e93929f0b0..71319f8abd1 100644 --- a/reactos/ntoskrnl/io/pnpmgr/pnpres.c +++ b/reactos/ntoskrnl/io/pnpmgr/pnpres.c @@ -755,7 +755,7 @@ IopTranslateDeviceResources( DescriptorRaw->u.Interrupt.Level, DescriptorRaw->u.Interrupt.Vector, (PKIRQL)&DescriptorTranslated->u.Interrupt.Level, - &DescriptorRaw->u.Interrupt.Affinity); + &DescriptorTranslated->u.Interrupt.Affinity); break; } case CmResourceTypeMemory: -- 2.17.1