commit cf9cab50cbf40ac76f6db206573c0bf03624a2d0
parent 4a92e36b32bf29d913acf1fed9d81261aa7b4063
Author: Andrej Kacian <ticho@claws-mail.org>
Date: Tue, 20 Dec 2016 23:31:16 +0100
Removed an unneeded trailing '\' from Windows' START_TIMING.
Well spotted by Pierre Fortin.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/common/timing.h b/src/common/timing.h
@@ -63,7 +63,7 @@
LARGE_INTEGER diff; \
const char *timing_name=str; \
QueryPerformanceFrequency (&frequency); \
- QueryPerformanceCounter (&start); \
+ QueryPerformanceCounter (&start);
#define END_TIMING() \
QueryPerformanceCounter (&end); \