summaryrefslogtreecommitdiff
path: root/games/battlestar
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1996-06-16 05:06:57 +0000
committerJason Downs <downsj@cvs.openbsd.org>1996-06-16 05:06:57 +0000
commita89cb8e7f11337d48b5d528602b70a228a8c6a33 (patch)
treea5fd8fdb30eec4a8156aa1ee005c710309432aa7 /games/battlestar
parent587016bbab30c6eac8d7b9ad4e1abe505c5922bb (diff)
ncurses: ERR -> NULL
Diffstat (limited to 'games/battlestar')
-rw-r--r--games/battlestar/fly.c2
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);
}