summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/cmdline.c6
-rw-r--r--apps/xmlsec.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/apps/cmdline.c b/apps/cmdline.c
index ec898776..6ae26084 100644
--- a/apps/cmdline.c
+++ b/apps/cmdline.c
@@ -104,7 +104,7 @@ xmlSecAppCmdLineParamsListParse(xmlSecAppCmdLineParamPtr* params,
void
xmlSecAppCmdLineParamsListClean(xmlSecAppCmdLineParamPtr* params) {
xmlSecAppCmdLineValuePtr tmp;
- size_t i;
+ xmlSecSize i;
assert(params != NULL);
@@ -121,7 +121,7 @@ void
xmlSecAppCmdLineParamsListPrint(xmlSecAppCmdLineParamPtr* params,
xmlSecAppCmdLineParamTopic topics,
FILE* output) {
- size_t i;
+ xmlSecSize i;
assert(params != NULL);
assert(output != NULL);
@@ -183,7 +183,7 @@ xmlSecAppCmdLineMatchParam(const char* argvParam, const char* paramName,
static xmlSecAppCmdLineParamPtr
xmlSecAppCmdLineParamsListFind(xmlSecAppCmdLineParamPtr* params, xmlSecAppCmdLineParamTopic topics,
const char* name) {
- size_t i;
+ xmlSecSize i;
int canHaveNameString;
assert(params != NULL);
diff --git a/apps/xmlsec.c b/apps/xmlsec.c
index 1a905a0f..ead6d339 100644
--- a/apps/xmlsec.c
+++ b/apps/xmlsec.c
@@ -1018,7 +1018,7 @@ done:
/* print debug info if requested */
if(repeats <= 1) {
xmlSecDSigReferenceCtxPtr dsigRefCtx;
- size_t good, i, size;
+ xmlSecSize good, i, size;
FILE* f;
f = xmlSecAppOpenFile(xmlSecAppCmdLineParamGetString(&outputParam));