summaryrefslogtreecommitdiff
path: root/cmd/sdrtest
diff options
context:
space:
mode:
authorMartin Thomson <martin.thomson@gmail.com>2015-08-17 11:22:29 -0700
committerMartin Thomson <martin.thomson@gmail.com>2015-08-17 11:22:29 -0700
commitedfddd7b86ae3cc6b1b2440216d4b83cdd9f321b (patch)
tree243150dab7af42c35c08dd056ee854bad24a1bdd /cmd/sdrtest
parent03d2e2d3d9d618778194c3759dee4bc625310f55 (diff)
downloadnss-hg-edfddd7b86ae3cc6b1b2440216d4b83cdd9f321b.tar.gz
Bug 1182667 - Enable warnings as errors, r=rrelyea
Diffstat (limited to 'cmd/sdrtest')
-rw-r--r--cmd/sdrtest/sdrtest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/sdrtest/sdrtest.c b/cmd/sdrtest/sdrtest.c
index 5740876d5..ba6350624 100644
--- a/cmd/sdrtest/sdrtest.c
+++ b/cmd/sdrtest/sdrtest.c
@@ -71,9 +71,9 @@ long_usage (char *program_name)
int
readStdin(SECItem * result)
{
- int bufsize = 0;
+ unsigned int bufsize = 0;
int cc;
- int wanted = 8192;
+ unsigned int wanted = 8192U;
result->len = 0;
result->data = NULL;