Should be fopen, not open.
This commit is contained in:
Родитель
c92cb54442
Коммит
4830246784
|
@ -58,7 +58,7 @@ int main() {
|
|||
printf("prepare..\n");
|
||||
|
||||
#define SIZE 203164
|
||||
FILE *f = open("screenshot.not", "rb");
|
||||
FILE *f = fopen("screenshot.not", "rb");
|
||||
char *buffer = malloc(SIZE);
|
||||
fread(buffer, SIZE, 1, f);
|
||||
fclose(f);
|
||||
|
|
Загрузка…
Ссылка в новой задаче