summaryrefslogtreecommitdiff
path: root/cmd/sdrtest
diff options
context:
space:
mode:
authorMartin Thomson <martin.thomson@gmail.com>2015-08-07 17:34:12 -0700
committerMartin Thomson <martin.thomson@gmail.com>2015-08-07 17:34:12 -0700
commitdf18e4c7e5e9ad31fab45575896fba7d2bc24250 (patch)
treef07ff7f0e8d1d06e564917eb58af355c1fa7d456 /cmd/sdrtest
parentc084b875adee244f5f56dd03e8948239d1f6c076 (diff)
downloadnss-hg-df18e4c7e5e9ad31fab45575896fba7d2bc24250.tar.gz
Bug 1182667 - Removing warnings, enabling -Werror, 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;