diff options
author | Jim Rees <rees@cvs.openbsd.org> | 2001-06-18 16:00:51 +0000 |
---|---|---|
committer | Jim Rees <rees@cvs.openbsd.org> | 2001-06-18 16:00:51 +0000 |
commit | 59a8da29ef83592d1b880eb6bd5ab365d706cf84 (patch) | |
tree | 43ac82ed9354d9585166686dfbecfdcabc7b0f3a /lib/libsectok/todos_atr.c | |
parent | 64878b056410d1027d18edcb43ccd2822335d031 (diff) |
PalmOS fixes
Diffstat (limited to 'lib/libsectok/todos_atr.c')
-rw-r--r-- | lib/libsectok/todos_atr.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/libsectok/todos_atr.c b/lib/libsectok/todos_atr.c index 53a56fadf69..f71311ece4a 100644 --- a/lib/libsectok/todos_atr.c +++ b/lib/libsectok/todos_atr.c @@ -1,4 +1,4 @@ -/* $Id: todos_atr.c,v 1.4 2001/06/08 15:04:05 rees Exp $ */ +/* $Id: todos_atr.c,v 1.5 2001/06/18 16:00:50 rees Exp $ */ /* copyright 1997, 1999, 2000 @@ -44,9 +44,11 @@ such damages. #include <System/Unix/unix_string.h> #include <UI/UIAll.h> #include "field.h" +typedef long int32_t; #else #include <stdio.h> #include <string.h> +#include <sys/types.h> #endif #include "sectok.h" @@ -120,7 +122,7 @@ static short Dtab[] = { -1, 1, 2, 4, 8, 16, 32, -1, 12, 20, -1, -1, -1, -1, -1, static struct bps { unsigned char Fi, Di; - long bps; + int32_t bps; } bps[] = { { 0x01, 0x08, 115464 }, { 0x09, 0x05, 111856 }, @@ -287,7 +289,7 @@ todos_get_atr(int ttyn, int flags, unsigned char *atr, struct scparam *param) pps[3] = 0; if (flags & SCRV) - printf("speed %ld\n", bps[i].bps); + printf("speed %ld\n", (long) bps[i].bps); #ifdef SCPPS /* Compute checksum */ @@ -304,7 +306,7 @@ todos_get_atr(int ttyn, int flags, unsigned char *atr, struct scparam *param) if (todos_scsetspeed(ttyn, bps[i].bps) < 0) { /* We already sent the pps, can't back out now, so fail. */ if (flags & SCRV) - printf("scsetspeed %ld failed\n", bps[i].bps); + printf("scsetspeed %ld failed\n", (long) bps[i].bps); param->t = -1; return len; } |