Put some of important parameters into fixed width signed integers
[open-adventure.git] / cheat.c
diff --git a/cheat.c b/cheat.c
index b07b1021c1f875d423a784abaac02dbb13c93fcd..b75fccf9c47951f217e7d4696357b97817ff8d21 100644 (file)
--- a/cheat.c
+++ b/cheat.c
@@ -14,7 +14,7 @@ int main(int argc, char *argv[])
 {
     int ch;
     char *savefilename = NULL;
 {
     int ch;
     char *savefilename = NULL;
-    long version = 0;
+    int version = 0;
     FILE *fp = NULL;
 
     // Initialize game variables
     FILE *fp = NULL;
 
     // Initialize game variables
@@ -38,11 +38,11 @@ int main(int argc, char *argv[])
     while ((ch = getopt(argc, argv, opts)) != EOF) {
         switch (ch) {
         case 'd':
     while ((ch = getopt(argc, argv, opts)) != EOF) {
         switch (ch) {
         case 'd':
-            game.numdie = (long)atoi(optarg);
+            game.numdie = (turn_t)atoi(optarg);
             printf("cheat: game.numdie = %ld\n", game.numdie);
             break;
         case 'l':
             printf("cheat: game.numdie = %ld\n", game.numdie);
             break;
         case 'l':
-            game.limit = (long)atoi(optarg);
+            game.limit = (turn_t)atoi(optarg);
             printf("cheat: game.limit = %ld\n", game.limit);
             break;
         case 's':
             printf("cheat: game.limit = %ld\n", game.limit);
             break;
         case 's':
@@ -50,12 +50,12 @@ int main(int argc, char *argv[])
             printf("cheat: game.saved = %ld\n", game.saved);
             break;
         case 't':
             printf("cheat: game.saved = %ld\n", game.saved);
             break;
         case 't':
-            game.turns = (long)atoi(optarg);
+            game.turns = (turn_t)atoi(optarg);
             printf("cheat: game.turns = %ld\n", game.turns);
             break;
         case 'v':
             printf("cheat: game.turns = %ld\n", game.turns);
             break;
         case 'v':
-            version = (long)atoi(optarg);
-            printf("cheat: version = %ld\n", version);
+            version = atoi(optarg);
+            printf("cheat: version = %d\n", version);
             break;
         case 'o':
             savefilename = optarg;
             break;
         case 'o':
             savefilename = optarg;