aboutsummaryrefslogtreecommitdiffstats
path: root/tests/t-data.c
diff options
context:
space:
mode:
authorMarcus Brinkmann <[email protected]>2003-07-31 15:44:32 +0000
committerMarcus Brinkmann <[email protected]>2003-07-31 15:44:32 +0000
commit51c384409ec3ad3d993786b5154aa7ebe11ebbce (patch)
treec083b763f1a8b6fd1e58ba06e74e910d3f179100 /tests/t-data.c
parent2003-07-31 Marcus Brinkmann <[email protected]> (diff)
downloadgpgme-51c384409ec3ad3d993786b5154aa7ebe11ebbce.tar.gz
gpgme-51c384409ec3ad3d993786b5154aa7ebe11ebbce.zip
2003-07-31 Marcus Brinkmann <[email protected]>
* gpg/t-verify.c (check_result): Change type of SUMMARY to unsigned int. * gpg/t-decrypt-verify.c (check_verify_result): Likewise. * gpg/t-keylist-sig.c (keys): Change type of member CLASS to unsigned int. * t-data.c (read_cb): Change type of AMOUNT to unsigned int. * t-version.c (version): Remove unused variable.
Diffstat (limited to 'tests/t-data.c')
-rw-r--r--tests/t-data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/t-data.c b/tests/t-data.c
index 882ffc82..d7950ad2 100644
--- a/tests/t-data.c
+++ b/tests/t-data.c
@@ -77,7 +77,7 @@ int
read_cb (void *cb_value, char *buffer, size_t count, size_t *nread)
{
static int off = 0;
- int amount = strlen (text) - off;
+ unsigned int amount = strlen (text) - off;
/* round_t round = *((round_t *) cb_value); */
if (!buffer && !count && !nread)