Comment polishing.
[open-adventure.git] / actions.c
index 6000f41e01980eb91a9ecf82296e5358a515809d..980352f348dc201f3fff5bb87e8db09481f86316 100644 (file)
--- a/actions.c
+++ b/actions.c
@@ -419,11 +419,13 @@ static int chain(verb_t verb)
 
         switch (game.prop[BEAR]) {
         case BEAR_DEAD:
-           /* Can't be reached as long as the only way for the bear to die
-            * is from a bridge collapse. Leave in in case this changes, but 
-            * exclude from coverage testing. */
-            game.fixed[BEAR] = IS_FIXED; // LCOV_EXCL_LINE
+            // LCOV_EXCL_START
+            /* Can't be reached as long as the only way for the bear to die
+             * is from a bridge collapse. Leave in in case this changes, but
+             * exclude from coverage testing. */
+            game.fixed[BEAR] = IS_FIXED;
             break;
+        // LCOV_EXCL_STOP
         default:
             game.fixed[BEAR] = IS_FREE;
         }