From dbff7e4fbb9431a38f37275c4d45ff9d89b2f180 Mon Sep 17 00:00:00 2001 From: deuce <> Date: Tue, 10 Jul 2007 21:47:40 +0000 Subject: [PATCH] 64-bit --- src/sbbs3/postmsg.cpp | 3 ++- src/sbbs3/writemsg.cpp | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/sbbs3/postmsg.cpp b/src/sbbs3/postmsg.cpp index d99044d609..29c4366a59 100644 --- a/src/sbbs3/postmsg.cpp +++ b/src/sbbs3/postmsg.cpp @@ -65,7 +65,8 @@ bool sbbs_t::postmsg(uint subnum, smbmsg_t *remsg, long wm_mode) char touser[64]; char from[64]; char pid[128]; - ushort xlat,msgattr; + uint16_t xlat; + ushort msgattr; int i,j,x,file,storage; ulong length,offset,crc=0xffffffff; FILE* instream; diff --git a/src/sbbs3/writemsg.cpp b/src/sbbs3/writemsg.cpp index 5e27950d75..8ad5b3fc11 100644 --- a/src/sbbs3/writemsg.cpp +++ b/src/sbbs3/writemsg.cpp @@ -1189,7 +1189,7 @@ void sbbs_t::editmsg(smbmsg_t *msg, uint subnum) { char buf[SDT_BLOCK_LEN]; char msgtmp[MAX_PATH+1]; - ushort xlat; + uint16_t xlat; int file,i,j,x; long length,offset; FILE *instream; -- GitLab