From c961c6369a6da387800d2b4e2fd37e635361ba3f Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Fri, 1 Jun 2007 05:23:59 +0000 Subject: [PATCH] s/exit(1)/exit(EXIT_FAILURE)/ --- man4/vcs.4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man4/vcs.4 b/man4/vcs.4 index bc9208ee1..107bcb76e 100644 --- a/man4/vcs.4 +++ b/man4/vcs.4 @@ -99,7 +99,7 @@ main(void) fd = open(device, O_RDWR); if (fd < 0) { perror(device); - exit(1); + exit(EXIT_FAILURE); } (void) read(fd, &scrn, 4); (void) lseek(fd, 4 + 2*(scrn.y*scrn.cols + scrn.x), 0);