mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
Fix TdiBuildBaseIrp by adding the missing ;
svn path=/branches/header-work/; revision=45852
This commit is contained in:
parent
9a46e3d7d6
commit
0651773e46
1 changed files with 3 additions and 1 deletions
|
@ -397,7 +397,9 @@ TdiDefaultSendPossibleHandler(
|
|||
bIrpSp->DeviceObject = (bDevObj); \
|
||||
bIrpSp->FileObject = (bFileObj); \
|
||||
if (bCompRoutine) \
|
||||
IoSetCompletionRoutine(bIrp, bCompRoutine, bContxt, TRUE, TRUE, TRUE) \
|
||||
{ \
|
||||
IoSetCompletionRoutine(bIrp, bCompRoutine, bContxt, TRUE, TRUE, TRUE);\
|
||||
} \
|
||||
else \
|
||||
IoSetCompletionRoutine(bIrp, NULL, NULL, FALSE, FALSE, FALSE); \
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue