diff options
author | 2000-09-21 00:23:43 +0000 | |
---|---|---|
committer | 2000-09-21 00:23:43 +0000 | |
commit | a53ea73b96f432ec4fbb64f07e8f49bd4f318a3a (patch) | |
tree | 16cde2968b412b1717ffa1a63ce347e7a3bbe6ca | |
parent | Fix -W warnings and add room number comments; jsm@netbsd.org (diff) | |
download | wireguard-openbsd-a53ea73b96f432ec4fbb64f07e8f49bd4f318a3a.tar.xz wireguard-openbsd-a53ea73b96f432ec4fbb64f07e8f49bd4f318a3a.zip |
formatting; from NetBSD
-rw-r--r-- | games/battlestar/com6.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/games/battlestar/com6.c b/games/battlestar/com6.c index 6f197443d31..9936f7d50c0 100644 --- a/games/battlestar/com6.c +++ b/games/battlestar/com6.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com6.c,v 1.12 2000/07/03 05:23:44 pjanzen Exp $ */ +/* $OpenBSD: com6.c,v 1.13 2000/09/21 00:23:43 pjanzen Exp $ */ /* $NetBSD: com6.c,v 1.5 1995/04/27 21:30:23 mycroft Exp $ */ /* @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)com6.c 8.2 (Berkeley) 4/28/95"; #else -static char rcsid[] = "$OpenBSD: com6.c,v 1.12 2000/07/03 05:23:44 pjanzen Exp $"; +static char rcsid[] = "$OpenBSD: com6.c,v 1.13 2000/09/21 00:23:43 pjanzen Exp $"; #endif #endif /* not lint */ @@ -149,7 +149,8 @@ rate() return ("junior voyeur"); else if (score < 35) return ("Don Juan"); - else return ("Marquis De Sade"); + else + return ("Marquis De Sade"); } else if (score == power) { if (score < 5) @@ -160,7 +161,8 @@ rate() return ("Klingon"); else if (score < 22) return ("Darth Vader"); - else return ("Sauron the Great"); + else + return ("Sauron the Great"); } else{ if (score < 5) return ("Polyanna"); @@ -168,7 +170,8 @@ rate() return ("philanthropist"); else if (score < 20) return ("Tattoo"); - else return ("Mr. Roarke"); + else + return ("Mr. Roarke"); } } |