1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00

unsigned int format specifier

This commit is contained in:
Wayne Parham 2022-03-03 19:57:43 -06:00 committed by mrdudz
parent 5dd952ba8c
commit d6fe34107e

View File

@ -42,7 +42,7 @@ int main (void) {
heap_size = _heapmemavail();
printf ( "Main memory has %d bytes available.\n", heap_size );
printf ( "Main memory has %u bytes available.\n", heap_size );
while ( (int) segment < 0xEFFF ) { // Iterate through 4K memory blocks
if( (int) segment != UNAVAILABLE ) {