summaryrefslogtreecommitdiffstats
path: root/dab/board.h
diff options
context:
space:
mode:
authorjoerg <joerg@NetBSD.org>2012-02-29 23:39:53 +0000
committerjoerg <joerg@NetBSD.org>2012-02-29 23:39:53 +0000
commit4749c0f9e18f87c21e43a65ffbf2d9c08ecf7a3a (patch)
tree066a98ba3c73e8926381349dfb82631b59dc6325 /dab/board.h
parentbcbc46f191b73fe1b817d448571b248466e49272 (diff)
downloadbsdgames-darwin-4749c0f9e18f87c21e43a65ffbf2d9c08ecf7a3a.tar.gz
bsdgames-darwin-4749c0f9e18f87c21e43a65ffbf2d9c08ecf7a3a.tar.zst
bsdgames-darwin-4749c0f9e18f87c21e43a65ffbf2d9c08ecf7a3a.zip
Fix various format string mismatches.
Diffstat (limited to 'dab/board.h')
-rw-r--r--dab/board.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/dab/board.h b/dab/board.h
index 2470703c..67dc3e0a 100644
--- a/dab/board.h
+++ b/dab/board.h
@@ -1,4 +1,4 @@
-/* $NetBSD: board.h,v 1.3 2011/08/29 20:30:37 joerg Exp $ */
+/* $NetBSD: board.h,v 1.4 2012/02/29 23:39:53 joerg Exp $ */
/*-
* Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -72,7 +72,8 @@ class BOARD {
void games(size_t i, const PLAYER& p); // Post games
void total(size_t i, const PLAYER& p); // Post totals
void ties(const PLAYER& p); // Post ties
- __dead void abort(const char *s, ...) const; // Algorithm error
+ __printflike(2, 3) __dead
+ void abort(const char *s, ...) const; // Algorithm error
private: