Remove extra variable

This commit is contained in:
Miles Alan 2020-07-12 21:25:01 -05:00
parent 7f977f9b2e
commit ee47ac2a5b

View file

@ -294,12 +294,11 @@ main(int argc, char *argv[])
orientation = atoi(argv[++i]);
} else if (!strcmp(argv[i], "-g")) {
gestsarrlen++;
void *ptr = realloc(gestsarr, (gestsarrlen * sizeof(Gesture)));
if ( ptr == NULL ) {
gestsarr = realloc(gestsarr, (gestsarrlen * sizeof(Gesture)));
if (gestsarr == NULL) {
perror("Could not allocate memory");
exit(EXIT_FAILURE);
}
gestsarr = ptr;
gestpt = strtok(argv[++i], ",");
for (j = 0; gestpt != NULL && j < 3; gestpt = strtok(NULL, ","), j++) {
switch(j) {