Skip to content

Commit c75e9f2

Browse files
ShwetikPanquesito7
andauthored
Update data_structures/linked_list/stack_using_linked_lists.c
Co-authored-by: David Leal <halfpacho@gmail.com>
1 parent 4d8bfe2 commit c75e9f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/linked_list/stack_using_linked_lists.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ void pop(struct node *p)
8080

8181
void display(struct node *p)
8282
{
83-
if (top == NULL)
83+
if (top == NULL)
8484
printf("stack is empty\n");
8585
else
8686
{

0 commit comments

Comments
 (0)