feature-fix-parsefield
germanFid 2022-10-24 17:12:03 +03:00
parent 1681825312
commit f41e432645
1 changed files with 0 additions and 9 deletions

View File

@ -310,8 +310,6 @@ void parceLine(char *input)
x = parceField(wrd[i], &f_num, &str, &_int, &tim, stroks); x = parceField(wrd[i], &f_num, &str, &_int, &tim, stroks);
printf("[%s]%d\nf_num = %d, x = %d\n", wrd[i], i, f_num, x);
if (x == -1) if (x == -1)
{ {
error(input); error(input);
@ -320,7 +318,6 @@ void parceLine(char *input)
else else
{ {
whatToSearch[f_num]++; whatToSearch[f_num]++;
printf("update whatToSearch\n");
switch (f_num) switch (f_num)
{ {
case 0: case 0:
@ -342,12 +339,6 @@ void parceLine(char *input)
end = *tim; end = *tim;
break; break;
case 6: case 6:
printf("Error here\n");
for (int i = 0; i < 100; i++)
{
printf("%d",stroks[i]);
}
printf("\nError here\n");
break; break;
default: default:
error(input); error(input);