From 41107b1d000d558dea03251bc81c46e0db3b3c9c Mon Sep 17 00:00:00 2001 From: neil Date: Wed, 15 Jul 2015 01:57:12 +0000 Subject: [PATCH] Tabs to spaces. git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@50959 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- test/dos/examinefh.c | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/test/dos/examinefh.c b/test/dos/examinefh.c index 47df06ef30..9c880e13c9 100644 --- a/test/dos/examinefh.c +++ b/test/dos/examinefh.c @@ -15,8 +15,8 @@ int main(int argc, char **argv) if (argc < 2) { - printf("Usage: %s \n", argv[0]); - return RETURN_FAIL; + printf("Usage: %s \n", argv[0]); + return RETURN_FAIL; } fh = Open(argv[1], MODE_OLDFILE); @@ -25,24 +25,25 @@ int main(int argc, char **argv) { struct FileInfoBlock *fib; - printf("IsInteractive: %d\n", (int)IsInteractive(fh)); - - fib = AllocDosObject(DOS_FIB, NULL); + printf("IsInteractive: %d\n", (int)IsInteractive(fh)); + + fib = AllocDosObject(DOS_FIB, NULL); if (fib != NULL) { if (ExamineFH(fh, fib)) { printf("Got FIB:\n"); - printf("Filename = %s\n" , fib->fib_FileName); - printf("Protection = 0x%08X\n", (unsigned)fib->fib_Protection); - } + printf("Filename = %s\n", fib->fib_FileName); + printf("Protection = 0x%08X\n", + (unsigned)fib->fib_Protection); + } else { printf("ExamineFH() failed, ioerr = %d\n", (int)IoErr()); result = RETURN_FAIL; } - if (strcasecmp(fib->fib_FileName, FilePart(argv[1])) != 0) + if (strcasecmp(fib->fib_FileName, FilePart(argv[1])) != 0) { printf("File name from FIB does not match" " file name from argument\n"); -- 2.11.4.GIT