Skip to content

Commit

Permalink
Removed non-portable print on memory error
Browse files Browse the repository at this point in the history
  • Loading branch information
mp81ss committed Mar 4, 2017
1 parent 1302309 commit 6e5dea3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion streebog.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ int main(int argc, char* argv[])
mem = amalloc(128, sizes, 4, &allocated);

if (mem == NULL) {
printf("No memory: Unable to allocate %u bytes\n", allocated);
puts("No memory: Unable to allocate memory");
return EXIT_MEM_ERROR;
}
io_buf = *mem;
Expand Down

0 comments on commit 6e5dea3

Please sign in to comment.