From cb493735fd2604c5b7b2c82b9811302b5d58ef9d Mon Sep 17 00:00:00 2001 From: mrg Date: Sun, 4 Feb 2018 08:48:05 +0000 Subject: fix issues found by GCC 6.4: battlestar was missing some {} in its insane printf()+puts() usage. this is a literal code sequence i found: printf("The blast catches "); printf("the goddess in the "); printf("stomach, knocking "); puts("her to the ground."); printf("She writhes in the "); printf("dirt as the agony of "); puts("death taunts her."); puts("She has stopped moving."); no lines inserted or removed. tetris' checkscores() had wrong and missing {} usage. --- tetris/scores.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tetris/scores.c') diff --git a/tetris/scores.c b/tetris/scores.c index 2157e8bd..847fe15b 100644 --- a/tetris/scores.c +++ b/tetris/scores.c @@ -1,4 +1,4 @@ -/* $NetBSD: scores.c,v 1.22 2014/03/22 19:05:30 dholland Exp $ */ +/* $NetBSD: scores.c,v 1.23 2018/02/04 08:48:05 mrg Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -830,7 +830,8 @@ checkscores(struct highscore *hs, int num) continue; } } - if (sp->hs_level < NLEVELS && sp->hs_level >= 0) + } + if (sp->hs_level < NLEVELS && sp->hs_level >= 0) { levelfound[sp->hs_level] = 1; i++, sp++; } -- cgit v1.2.3