Skip to content

Commit

Permalink
fix: Remove unnecessary prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Mino1289 committed Sep 6, 2023
1 parent 44c9ffc commit 1a818a9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions container.c
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#include <container.h>

void print_Container(Container c) {
printf("Container @%p\n", (void*) &c);
printf("\tID: %d\n", c.id);
printf("Container:\n\tID: %d\n", c.id);
printf("\tFrom: %d\n", c.From);
printf("\tDest: %d\n", c.Dest);
}

0 comments on commit 1a818a9

Please sign in to comment.