We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26c9a3e commit 5b0509cCopy full SHA for 5b0509c
double_ended_queue/doubleEndedQueue.c
@@ -78,7 +78,7 @@ struct Deque *pop_back() //Function to remove element from back of deque
78
temp2 = temp->next;
79
temp->next = NULL;
80
last = temp;
81
- free(temp2); //free the unwanted space
+ free(temp2);//free the unwanted space
82
return head;
83
}
84
0 commit comments