mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 01:35:47 +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->DeviceObject = (bDevObj); \
|
||||||
bIrpSp->FileObject = (bFileObj); \
|
bIrpSp->FileObject = (bFileObj); \
|
||||||
if (bCompRoutine) \
|
if (bCompRoutine) \
|
||||||
IoSetCompletionRoutine(bIrp, bCompRoutine, bContxt, TRUE, TRUE, TRUE) \
|
{ \
|
||||||
|
IoSetCompletionRoutine(bIrp, bCompRoutine, bContxt, TRUE, TRUE, TRUE);\
|
||||||
|
} \
|
||||||
else \
|
else \
|
||||||
IoSetCompletionRoutine(bIrp, NULL, NULL, FALSE, FALSE, FALSE); \
|
IoSetCompletionRoutine(bIrp, NULL, NULL, FALSE, FALSE, FALSE); \
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue