No functional change, just use tabs for indentation. Signed-off-by: Thomas Huth <thuth@xxxxxxxxxx> --- x86/setjmp.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/x86/setjmp.c b/x86/setjmp.c index 1874944..1a848b4 100644 --- a/x86/setjmp.c +++ b/x86/setjmp.c @@ -9,18 +9,18 @@ static const int expected[] = { int main(void) { - volatile int index = 0; - jmp_buf j; - int i; + volatile int index = 0; + jmp_buf j; + int i; - i = setjmp(j); - if (expected[index] != i) { - printf("FAIL: actual %d / expected %d\n", i, expected[index]); - return -1; - } - index++; - if (i + 1 < NUM_LONGJMPS) - longjmp(j, i + 1); + i = setjmp(j); + if (expected[index] != i) { + printf("FAIL: actual %d / expected %d\n", i, expected[index]); + return -1; + } + index++; + if (i + 1 < NUM_LONGJMPS) + longjmp(j, i + 1); - return 0; + return 0; } -- 2.18.1