diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2013-04-06 17:25:56 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2013-04-09 17:38:28 -0700 |
commit | 756085f91d0f01c69550735cf2e60cae54d9c72a (patch) | |
tree | 4aa08505fe01fbb7265e5798d86355229b4b5e93 /src/map/intif.cpp | |
parent | 9c13169778f55eec42fde14e12b2cc3c2f601c4e (diff) | |
download | tmwa-756085f91d0f01c69550735cf2e60cae54d9c72a.tar.gz tmwa-756085f91d0f01c69550735cf2e60cae54d9c72a.tar.bz2 tmwa-756085f91d0f01c69550735cf2e60cae54d9c72a.tar.xz tmwa-756085f91d0f01c69550735cf2e60cae54d9c72a.zip |
Native amd64 support
Diffstat (limited to 'src/map/intif.cpp')
-rw-r--r-- | src/map/intif.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/intif.cpp b/src/map/intif.cpp index a2f75c5..6c8edf5 100644 --- a/src/map/intif.cpp +++ b/src/map/intif.cpp @@ -418,7 +418,7 @@ int intif_parse_LoadStorage(int fd) if (RFIFOW(fd, 2) - 8 != sizeof(struct storage)) { if (battle_config.error_log) - PRINTF("intif_parse_LoadStorage: data size error %d %d\n", + PRINTF("intif_parse_LoadStorage: data size error %d %zu\n", RFIFOW(fd, 2) - 8, sizeof(struct storage)); return 1; } @@ -473,7 +473,7 @@ int intif_parse_PartyInfo(int fd) if (RFIFOW(fd, 2) != sizeof(struct party) + 4) { if (battle_config.error_log) - PRINTF("intif: party info : data size error %d %d %d\n", + PRINTF("intif: party info : data size error %d %d %zu\n", RFIFOL(fd, 4), RFIFOW(fd, 2), sizeof(struct party) + 4); } |