Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/minhook.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTsuda Kageyu <tsuda.kageyu@gmail.com>2016-12-01 10:41:32 +0300
committerTsuda Kageyu <tsuda.kageyu@gmail.com>2016-12-01 10:41:32 +0300
commitd91d6dabb197a726dd6936ec59eac3012413d330 (patch)
tree2aff8123f160a420ae9adbd6fd333c27e93c8aa0
parentb15bb408c475044462017c5c0c84565997b23de6 (diff)
Suppress a false-positive warning about an uninitialized variable.
-rw-r--r--src/hook.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hook.c b/src/hook.c
index f1b8859..3d3ab36 100644
--- a/src/hook.c
+++ b/src/hook.c
@@ -239,7 +239,7 @@ static void ProcessThreadIPs(HANDLE hThread, UINT pos, UINT action)
enable = TRUE;
break;
- case ACTION_APPLY_QUEUED:
+ default: // ACTION_APPLY_QUEUED
enable = pHook->queueEnable;
break;
}