Fixed some compiler warnings
git-svn-id: https://vsmartcard.svn.sourceforge.net/svnroot/vsmartcard@443 96b47cad-a561-4643-ad3b-153ac7d7599c
This commit is contained in:
@@ -299,7 +299,7 @@ main (int argc, char **argv)
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case OPT_TRVERSION:
|
case OPT_TRVERSION:
|
||||||
if (sscanf(optarg, "%d", &pace_input.tr_version) != 1) {
|
if (sscanf(optarg, "%d", (int *) &pace_input.tr_version) != 1) {
|
||||||
parse_error(argv[0], options, option_help, optarg, oindex);
|
parse_error(argv[0], options, option_help, optarg, oindex);
|
||||||
exit(2);
|
exit(2);
|
||||||
}
|
}
|
||||||
@@ -406,7 +406,7 @@ main (int argc, char **argv)
|
|||||||
|
|
||||||
gettimeofday(&tv, NULL);
|
gettimeofday(&tv, NULL);
|
||||||
printf("%u,%06u: Trying %s=%s\n",
|
printf("%u,%06u: Trying %s=%s\n",
|
||||||
tv.tv_sec, tv.tv_usec,
|
(unsigned int) tv.tv_sec, (unsigned int) tv.tv_usec,
|
||||||
npa_secret_name(pace_input.pin_id), pace_input.pin);
|
npa_secret_name(pace_input.pin_id), pace_input.pin);
|
||||||
|
|
||||||
i = EstablishPACEChannel(NULL, card, pace_input, &pace_output,
|
i = EstablishPACEChannel(NULL, card, pace_input, &pace_output,
|
||||||
@@ -418,12 +418,12 @@ main (int argc, char **argv)
|
|||||||
gettimeofday(&tv, NULL);
|
gettimeofday(&tv, NULL);
|
||||||
if (0 > i) {
|
if (0 > i) {
|
||||||
printf("%u,%06u: Tried breaking %s without success.\n",
|
printf("%u,%06u: Tried breaking %s without success.\n",
|
||||||
tv.tv_sec, tv.tv_usec,
|
(unsigned int) tv.tv_sec, (unsigned int) tv.tv_usec,
|
||||||
npa_secret_name(pace_input.pin_id));
|
npa_secret_name(pace_input.pin_id));
|
||||||
goto err;
|
goto err;
|
||||||
} else {
|
} else {
|
||||||
printf("%u,%06u: Tried breaking %s with success (=%s).\n",
|
printf("%u,%06u: Tried breaking %s with success (=%s).\n",
|
||||||
tv.tv_sec, tv.tv_usec,
|
(unsigned int) tv.tv_sec, (unsigned int) tv.tv_usec,
|
||||||
npa_secret_name(pace_input.pin_id),
|
npa_secret_name(pace_input.pin_id),
|
||||||
pace_input.pin);
|
pace_input.pin);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user