Skip to content

Commit

Permalink
Print "Out of memory" on stderr, not stdout
Browse files Browse the repository at this point in the history
Closes: #303
Approved by: smcv
  • Loading branch information
jwilk authored and rh-atomic-bot committed Feb 26, 2019
1 parent cc44544 commit 1622673
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ die_unless_label_valid (const char *label)
void
die_oom (void)
{
puts ("Out of memory");
fputs ("Out of memory\n", stderr);
exit (1);
}

Expand Down

0 comments on commit 1622673

Please sign in to comment.