mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-22 16:32:13 -07:00
Fix a printf 64-bit-cleanness error.
[originally from svn r10098]
This commit is contained in:
@ -1193,7 +1193,7 @@ int main(int argc, char **argv)
|
||||
} else {
|
||||
if (nnumbers >= lenof(numbers)) {
|
||||
fprintf(stderr, "%s: internal limit of %d numbers exceeded\n",
|
||||
pname, lenof(numbers));
|
||||
pname, (int)lenof(numbers));
|
||||
return 1;
|
||||
} else {
|
||||
numbers[nnumbers++] = atoi(p);
|
||||
|
Reference in New Issue
Block a user