Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

Commit

Permalink
Small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
PopovEvgeniy committed Mar 9, 2023
1 parent 6c8cab9 commit d40fc14
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions grpdecompiler.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,9 @@ void show_intro()
{
putchar('\n');
puts("GRP DECOMPILER");
puts("Version 2.1.1");
puts("Version 2.1.2");
puts("This program distributed under GNU GENERAL PUBLIC LICENSE");
puts("File extraction tools for GRP pseudo-archives by Popov Evgeniy Alekseyevich");
puts("2010-2023 years");
puts("File extraction tools for GRP pseudo-archives by Popov Evgeniy Alekseyevich, 2010-2023 years");
}

void show_message(const char *message)
Expand Down Expand Up @@ -208,7 +207,7 @@ size_t check_format(FILE *input)
grp_block *read_blocks(FILE *input,const size_t amount)
{
grp_block *result=NULL;
result=(grp_block*)calloc(amount,sizeof(grp_block));
result=(grp_block*)malloc(amount*sizeof(grp_block));
check_memory(result);
fread(result,sizeof(grp_block),amount,input);
return result;
Expand Down
4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
GRP DECOMPILER

Version 2.1.1
Version 2.1.2

File extraction tools for GRP pseudo-archives by Popov Evgeniy Alekseyevich

Expand Down Expand Up @@ -70,4 +70,4 @@ Version history
2.0.5 - 2.0.6 - Small changes.
2.0.7 - Small bug fixed.
2.0.7.1 - 2.0.7.2 - Makefile updated.
2.0.8 - 2.1.1 - Small changes.
2.0.8 - 2.1.2 - Small changes.

0 comments on commit d40fc14

Please sign in to comment.