Cleaned unused variable

This commit is contained in:
Adrien Bourmault 2021-06-09 12:26:34 +02:00
parent 8cecf6d145
commit e35b4b3725
No known key found for this signature in database
GPG Key ID: 6EB408FE0ACEC664
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ int main(int argc, char **argv)
BoolArray_t *globalPreemptionSpace = NULL;
IntArray_t *globalDrawingSpace = NULL;
IntArray_t *arrowList = NULL;
IntArray_t *transitionTree = NULL;
//IntArray_t *transitionTree = NULL;
globalPreemptionSpace = (BoolArray_t*) malloc(sizeof(BoolArray_t));
globalPreemptionSpace->space = (bool*) malloc(sizeof(bool)*SPACE_SIZE);