called object not a function c
问题 Good morning SO- this ones been cooking my noodle for a bit (also, it's very hard to google about the c programming language I've noticed...) void prepareFrames(PDouble prep){ int gap = prep->gap; printf("Gap is %d\n", gap); prep->intFrames = (PFrame*)malloc(gap*sizeof(PFrame)); PFrame copyFrame = prep->first; int i; for(i=0; i < gap; i++){ prep->intFrames[i] = (PFrame)malloc(sizeof(Frame)); copyFrame(prep->intFrames[i], prep->first, i); //LINE 189 } } void copyFrame(PFrame new, PFrame copy,