don't report curses initialization failure using curses

This commit is contained in:
pooka 2002-08-13 18:16:31 +00:00
parent bb022a80b7
commit d19d334a86

View File

@ -1,4 +1,4 @@
/* $NetBSD: sushi.c,v 1.10 2002/07/25 12:39:26 jdolecek Exp $ */ /* $NetBSD: sushi.c,v 1.11 2002/08/13 18:16:31 pooka Exp $ */
/* /*
* Copyright (c) 2000 The NetBSD Foundation, Inc. * Copyright (c) 2000 The NetBSD Foundation, Inc.
@ -104,8 +104,7 @@ main(int argc, char **argv)
} }
if (initscr() == NULL) if (initscr() == NULL)
bailout("%s", catgets(catalog, 1, 22, errx(1, "%s", "Cannot initialize curses");
"Cannot initialize curses"));
cdkscreen = initCDKScreen(stdscr); cdkscreen = initCDKScreen(stdscr);