Minor cleanup
diff --git a/bench/latency.cc b/bench/latency.cc
index e72ea49..4fb59ee 100644
--- a/bench/latency.cc
+++ b/bench/latency.cc
@@ -1,7 +1,5 @@
 #include <benchmark/benchmark.h>
 
-#include <unistd.h>
-
 #include <pthreadpool.h>
 
 #include <thread>
diff --git a/src/threadpool-pthreads.c b/src/threadpool-pthreads.c
index 2cb834d..4bbf427 100644
--- a/src/threadpool-pthreads.c
+++ b/src/threadpool-pthreads.c
@@ -32,9 +32,9 @@
 #endif
 
 #ifdef _WIN32
-#	define NOMINMAX
-#	include <sysinfoapi.h>
-#	include <malloc.h>
+	#define NOMINMAX
+	#include <malloc.h>
+	#include <sysinfoapi.h>
 #endif
 
 /* Dependencies */
@@ -559,7 +559,7 @@
 
 		#if PTHREADPOOL_USE_FUTEX
 			/*
-			 * Make new command parameters globally visible. Having this fence before updating the command is imporatnt: it
+			 * Make new command parameters globally visible. Having this fence before updating the command is important: it
 			 * guarantees that if a worker thread observes new command value, it also observes the updated command parameters.
 			 */
 			atomic_thread_fence(memory_order_release);