tests/etnaviv: drop unused `return 0`

Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
main
Eric Engestrom 2018-01-26 11:03:32 +00:00
parent 28052ad589
commit 44867b0eef
1 changed files with 1 additions and 3 deletions

View File

@ -63,7 +63,7 @@ struct dib_header {
unsigned int unused[12]; unsigned int unused[12];
} __attribute__((__packed__)); } __attribute__((__packed__));
static int static void
bmp_header_write(int fd, int width, int height, int bgra, int noflip, int alpha) bmp_header_write(int fd, int width, int height, int bgra, int noflip, int alpha)
{ {
struct bmp_header bmp_header = { struct bmp_header bmp_header = {
@ -98,8 +98,6 @@ bmp_header_write(int fd, int width, int height, int bgra, int noflip, int alpha)
write(fd, &bmp_header, sizeof(struct bmp_header)); write(fd, &bmp_header, sizeof(struct bmp_header));
write(fd, &dib_header, sizeof(struct dib_header)); write(fd, &dib_header, sizeof(struct dib_header));
return 0;
} }
void void