corrected int type for main

This commit is contained in:
van Hauser 2017-10-05 13:31:36 +02:00
parent 93d5da33a7
commit 0a50b41be9
2 changed files with 2 additions and 2 deletions

View file

@ -2105,7 +2105,7 @@ void process_proxy_line(int32_t type, char *string) {
proxy_count++; proxy_count++;
} }
int32_t main(int32_t argc, char *argv[]) { int main(int argc, char *argv[]) {
char *proxy_string = NULL, *device = NULL, *memcheck, *cmdtarget = NULL; char *proxy_string = NULL, *device = NULL, *memcheck, *cmdtarget = NULL;
char *outfile_format_tmp; char *outfile_format_tmp;
FILE *lfp = NULL, *pfp = NULL, *cfp = NULL, *ifp = NULL, *rfp = NULL, *proxyfp; FILE *lfp = NULL, *pfp = NULL, *cfp = NULL, *ifp = NULL, *rfp = NULL, *proxyfp;

View file

@ -36,7 +36,7 @@ void help() {
exit(-1); exit(-1);
} }
int32_t main(int32_t argc, char *argv[]) { int main(int argc, char *argv[]) {
int32_t i, j, k; int32_t i, j, k;
int32_t sets = 0, countsets = 0, minlen = 0, maxlen = MAXLENGTH, count = 0; int32_t sets = 0, countsets = 0, minlen = 0, maxlen = MAXLENGTH, count = 0;
int32_t set_low = 0, set_up = 0, set_no = 0, set_print = 0, set_other = 0; int32_t set_low = 0, set_up = 0, set_no = 0, set_print = 0, set_other = 0;