Fixed one type typo

This commit is contained in:
Marcelina Szostak 2025-04-18 18:42:25 +02:00
parent 19477b3cbe
commit 88d0e06e4a
Signed by: kapcioszek
GPG Key ID: 5B07EB46181A963B

2
main.c
View File

@ -9,7 +9,7 @@ long GetFileSize(FILE* f){
return size;
}
void DumpMemory(char *memory, FILE *filename){
void DumpMemory(char *memory, char *filename){
FILE *dump = fopen(filename, "wb");
fwrite(memory, 1, mem_size, dump);
fclose(dump);