Skip to content

Commit

Permalink
Merge pull request shellphish#90 from xairy/patch-1
Browse files Browse the repository at this point in the history
Fix printing new line in first_fit.c
  • Loading branch information
m1ghtym0 authored Oct 11, 2018
2 parents 59af654 + 02aaeba commit 6f54096
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion first_fit.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ int main()
strcpy(c, "this is C!");
fprintf(stderr, "3rd allocation %p points to %s\n", c, c);
fprintf(stderr, "first allocation %p points to %s\n", a, a);
fprintf(stderr, "If we reuse the first allocation, it now holds the data from the third allocation.");
fprintf(stderr, "If we reuse the first allocation, it now holds the data from the third allocation.\n");
}

0 comments on commit 6f54096

Please sign in to comment.