diff options
| author | christos <christos@NetBSD.org> | 2011-08-16 11:14:04 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2011-08-16 11:14:04 +0000 |
| commit | 7f3b9841994ed627f10b127d3b992075cad8affb (patch) | |
| tree | d79f3b2b53a36462b0de3e0da8c83a97af9a95b3 /mille/mille.h | |
| parent | ea4e3d5fd9e93df96c4ab1c9cc6090610dd73bec (diff) | |
| download | bsdgames-darwin-7f3b9841994ed627f10b127d3b992075cad8affb.tar.gz bsdgames-darwin-7f3b9841994ed627f10b127d3b992075cad8affb.zip | |
eliminate non-literal format strings
Diffstat (limited to 'mille/mille.h')
| -rw-r--r-- | mille/mille.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mille/mille.h b/mille/mille.h index e9672a7a..10326d89 100644 --- a/mille/mille.h +++ b/mille/mille.h @@ -1,4 +1,4 @@ -/* $NetBSD: mille.h,v 1.17 2009/08/12 08:07:27 dholland Exp $ */ +/* $NetBSD: mille.h,v 1.18 2011/08/16 11:14:04 christos Exp $ */ /* * Copyright (c) 1982, 1993 @@ -212,7 +212,8 @@ extern bool Debug, Finished, Next, On_exit, Order, Saved; #define INITSTR_SIZE 100 extern char Initstr[INITSTR_SIZE]; -extern const char *C_fmt, *const *C_name, *Fromfile; +extern const char *const *C_name, *Fromfile; +#define C_fmt "%-18.18s" extern int Card_no, End, Handstart, Movetype, Numgos, Numneed[], Numseen[NUM_CARDS], Play, Window; |
