From 0651773e46f97f752f4bb4e4f861daf9d64836b4 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Fri, 5 Mar 2010 00:34:26 +0000 Subject: [PATCH] Fix TdiBuildBaseIrp by adding the missing ; svn path=/branches/header-work/; revision=45852 --- include/ddk/tdikrnl.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/ddk/tdikrnl.h b/include/ddk/tdikrnl.h index fa3679ed7b5..7c5f90dfcd3 100644 --- a/include/ddk/tdikrnl.h +++ b/include/ddk/tdikrnl.h @@ -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); \ } -- 2.17.1