Skip to content

Commit 5b0509c

Browse files
committed
Indentation and updating
1 parent 26c9a3e commit 5b0509c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

double_ended_queue/doubleEndedQueue.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ struct Deque *pop_back() //Function to remove element from back of deque
7878
temp2 = temp->next;
7979
temp->next = NULL;
8080
last = temp;
81-
free(temp2); //free the unwanted space
81+
free(temp2);//free the unwanted space
8282
return head;
8383
}
8484

0 commit comments

Comments
 (0)