ref: 87af671fc5b21989f911646067dece53c8063f73
parent: f09fa9d003e357a663c4d4584aec581f3bb265ea
author: mfrancis95 <mikefrancis95@gmail.com>
date: Sun Dec 8 17:49:21 EST 2019
Fix printf warning in memio.c
--- a/src/memio.c
+++ b/src/memio.c
@@ -189,7 +189,7 @@
}
else
{
- printf("Error seeking to %i\n", newpos);
+ printf("Error seeking to %u\n", newpos);
return -1;
}
}