Module: tools Branch: master Commit: 236853c2dd8aacc124ca25d385758fc7d0c25570 URL: https://source.winehq.org/git/tools.git/?a=commit;h=236853c2dd8aacc124ca25d3...
Author: Francois Gouget fgouget@codeweavers.com Date: Thu Mar 14 12:04:01 2019 +0100
testbot/TestLauncher: Add an Emacs directive to get 3-space indentation.
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
testbot/src/TestLauncher/TestLauncher.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/testbot/src/TestLauncher/TestLauncher.c b/testbot/src/TestLauncher/TestLauncher.c index 15929c5..783dbab 100644 --- a/testbot/src/TestLauncher/TestLauncher.c +++ b/testbot/src/TestLauncher/TestLauncher.c @@ -1,3 +1,4 @@ +/* -*- Mode: C; c-basic-offset: 3; indent-tabs-mode: nil -*- */ /* * Verifies that the dlls needed for the test are present. * @@ -34,8 +35,8 @@ static const char *LocationFile; static unsigned LocationLine; static void _SetErrorLocation(const char* file, int line) { - LocationFile = file; - LocationLine = line; + LocationFile = file; + LocationLine = line; }
#ifdef __GNUC__