X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=cheat.c;h=7d9474a22b7ffed6d2c64a6f08c974fda1b8fa7f;hb=dee8809e3091a9e06f79fcc47f9a38c4183894e5;hp=008fb9c4def8978ec3e88e1a680d86a53c211bd9;hpb=782c5c3f290555fa9368208efdb3b428f45468eb;p=open-adventure.git diff --git a/cheat.c b/cheat.c index 008fb9c..7d9474a 100644 --- a/cheat.c +++ b/cheat.c @@ -12,6 +12,7 @@ #include #include #include +#include #include "advent.h" int main(int argc, char *argv[]) @@ -43,19 +44,19 @@ int main(int argc, char *argv[]) switch (ch) { case 'd': game.numdie = (turn_t)atoi(optarg); - printf("cheat: game.numdie = %ld\n", game.numdie); + printf("cheat: game.numdie = %d\n", game.numdie); break; case 'l': game.limit = (turn_t)atoi(optarg); - printf("cheat: game.limit = %ld\n", game.limit); + printf("cheat: game.limit = %d\n", game.limit); break; case 's': - game.saved = (long)atoi(optarg); - printf("cheat: game.saved = %ld\n", game.saved); + game.saved = (int)atoi(optarg); + printf("cheat: game.saved = %d\n", game.saved); break; case 't': game.turns = (turn_t)atoi(optarg); - printf("cheat: game.turns = %ld\n", game.turns); + printf("cheat: game.turns = %d\n", game.turns); break; case 'v': version = atoi(optarg); @@ -96,3 +97,19 @@ int main(int argc, char *argv[]) return EXIT_SUCCESS; } + +// LCOV_EXCL_START +/* + * Ugh...unused, but required for linkage. + * See the actually useful version of this in main.c + */ + +char *myreadline(const char *prompt) +{ + return readline(prompt); +} +// LCOV_EXCL_STOP + +/* end */ + +