diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-06-16 05:06:57 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-06-16 05:06:57 +0000 |
commit | a89cb8e7f11337d48b5d528602b70a228a8c6a33 (patch) | |
tree | a5fd8fdb30eec4a8156aa1ee005c710309432aa7 /games/battlestar | |
parent | 587016bbab30c6eac8d7b9ad4e1abe505c5922bb (diff) |
ncurses: ERR -> NULL
Diffstat (limited to 'games/battlestar')
-rw-r--r-- | games/battlestar/fly.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/battlestar/fly.c b/games/battlestar/fly.c index b98364e99e4..662398ecccc 100644 --- a/games/battlestar/fly.c +++ b/games/battlestar/fly.c @@ -74,7 +74,7 @@ visual() void moveenemy(); destroyed = 0; - if(initscr() == ERR){ + if(initscr() == NULL){ puts("Whoops! No more memory..."); return(0); } |