From: Richard Purdie Date: Tue, 21 Nov 2006 13:26:41 +0000 (+0000) Subject: * psplash-write.c: X-Git-Tag: v0.1~23 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cc55ea172cb24684718fb5de4a7c76e026c6d16e;p=profile%2Fivi%2Fpsplash.git * psplash-write.c: Disable error message when the fifo doesn't exist. --- diff --git a/ChangeLog b/ChangeLog index 732b5f3..696244c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-11-21 Richard Purdie + + * psplash-write.c: + Disable error message when the fifo doesn't exist. + 2006-11-21 Matthew Allum * psplash.c: (main): diff --git a/psplash-write.c b/psplash-write.c index ebe0541..3fdba95 100644 --- a/psplash-write.c +++ b/psplash-write.c @@ -47,7 +47,9 @@ int main(int argc, char **argv) if ((pipe_fd = open (PSPLASH_FIFO,O_WRONLY|O_NONBLOCK)) == -1) { - perror("Error unable to open fifo"); + /* Silently error out instead of covering the boot process in + errors when psplash has exitted due to a VC switch */ + /* perror("Error unable to open fifo"); */ exit (-1); }