1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00

Fix up formatting in tst-ftell-active-handler.c

This commit is contained in:
Siddhesh Poyarekar
2014-03-04 15:49:58 +05:30
parent 091eff71a5
commit d4b17258bb
2 changed files with 12 additions and 7 deletions

View File

@@ -44,11 +44,11 @@ static int do_test (void);
{ \
(fp) = fdopen ((fd), (mode)); \
if ((fp) == NULL) \
{ \
printf ("fdopen failed: %m\n"); \
close (fd); \
ret = 1; \
} \
{ \
printf ("fdopen failed: %m\n"); \
close (fd); \
ret = 1; \
} \
} \
ret; \
})
@@ -66,7 +66,7 @@ static int do_test (void);
{ \
(fd) = fileno (fp); \
if ((fd) == -1) \
{ \
{ \
printf ("fileno failed: %m\n"); \
ret = 1; \
} \
@@ -230,7 +230,7 @@ do_write_test (const char *filename)
printf ("offset = %ld\n", offset);
fclose (fp);
}
}
}
return ret;