From 6ef0028eddb407cf5e2feddeb5d43abd65968472 Mon Sep 17 00:00:00 2001 From: basil00 Date: Thu, 2 May 2013 11:09:00 +0800 Subject: [PATCH] - Fix stray `;' in code sample (issue #5). --- doc/divert.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/divert.html b/doc/divert.html index 27c4b0f..26b5275 100644 --- a/doc/divert.html +++ b/doc/divert.html @@ -1231,7 +1231,7 @@ capture-modify-reinject loop: UINT packetLen; handle = DivertOpen("...", 0, 0, 0); // Open some filter - if (handle == INVALID_HANDLE_VALUE); + if (handle == INVALID_HANDLE_VALUE) { // Handle error exit(1);