Fix TdiBuildBaseIrp by adding the missing ;
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Fri, 5 Mar 2010 00:34:26 +0000 (00:34 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Fri, 5 Mar 2010 00:34:26 +0000 (00:34 +0000)
svn path=/branches/header-work/; revision=45852

include/ddk/tdikrnl.h

index fa3679e..7c5f90d 100644 (file)
@@ -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);        \
 }