From: Andrej Kacian Date: Tue, 20 Dec 2016 22:31:16 +0000 (+0100) Subject: Removed an unneeded trailing '\' from Windows' START_TIMING. X-Git-Tag: 3.15.0~181 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=cf9cab50cbf40ac76f6db206573c0bf03624a2d0;hp=4a92e36b32bf29d913acf1fed9d81261aa7b4063 Removed an unneeded trailing '\' from Windows' START_TIMING. Well spotted by Pierre Fortin. --- diff --git a/src/common/timing.h b/src/common/timing.h index 61ffa489a..f97bfb147 100644 --- 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); \