summaryrefslogtreecommitdiffstats
path: root/sesman/chansrv/smartcard.c
diff options
context:
space:
mode:
authorPavel Roskin <plroskin@gmail.com>2016-06-21 16:30:19 -0700
committerPavel Roskin <plroskin@gmail.com>2016-07-08 04:29:51 +0000
commitd1efb0d5baa661367b0fe74130457cb932a66e3b (patch)
tree0627bc5debad713d40cefc7ad16dc8afa750bc7f /sesman/chansrv/smartcard.c
parent5829323ad88f8120730968cfe165e590a7fb2d59 (diff)
downloadxrdp-proprietary-d1efb0d5baa661367b0fe74130457cb932a66e3b.tar.gz
xrdp-proprietary-d1efb0d5baa661367b0fe74130457cb932a66e3b.zip
Fix signed to unsigned comparisons reported by g++ 6.1.0
Diffstat (limited to 'sesman/chansrv/smartcard.c')
-rw-r--r--sesman/chansrv/smartcard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sesman/chansrv/smartcard.c b/sesman/chansrv/smartcard.c
index 1e692909..41fe66a4 100644
--- a/sesman/chansrv/smartcard.c
+++ b/sesman/chansrv/smartcard.c
@@ -1256,7 +1256,7 @@ scard_send_GetStatusChange(IRP* irp, char *context, int context_bytes,
struct stream *s;
tui32 ioctl;
int bytes;
- int i;
+ unsigned int i;
int num_chars;
int index;
twchar w_reader_name[100];