Improve TAP messages slightly.
[open-adventure.git] / misc.c
diff --git a/misc.c b/misc.c
index 34d045c64ab37c1430f339c7bdf4e5cf656606e2..9a8d2e5a4054f6989ab962b404c346a17b0cbd85 100644 (file)
--- a/misc.c
+++ b/misc.c
@@ -1,9 +1,9 @@
 /*
  * I/O and support routines.
  *
- * Copyright (c) 1977, 2005 by Will Crowther and Don Woods
- * Copyright (c) 2017 by Eric S. Raymond
- * SPDX-License-Identifier: BSD-2-clause
+ * SPDX-FileCopyrightText: 1977, 2005 by Will Crowther and Don Woods
+ * SPDX-FileCopyrightText: 2017 by Eric S. Raymond
+ * SPDX-License-Identifier: BSD-2-Clause
  */
 
 #include <unistd.h>
@@ -719,7 +719,7 @@ static int32_t get_next_lcg_value(void)
     int32_t old_x = game.lcg_x;
     game.lcg_x = (LCG_A * game.lcg_x + LCG_C) % LCG_M;
     if (settings.debug) {
-       printf("# random %d\n", old_x);
+       printf("# random %d\n", old_x); // LCOV_EXCL_LINE
     }
     return old_x;
 }