explicit conversion to int added

This commit is contained in:
Nicolas 2025-10-05 23:10:00 +02:00
parent ac148da25b
commit 23be1b1cae
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ int update_data_offs() {
perror("Error: code and data memory to far apart");
return 0;
}
data_offs = data_memory - executable_memory;
data_offs = (int)(data_memory - executable_memory);
return 1;
}