commit 87af671fc5b21989f911646067dece53c8063f73
Author: mfrancis95 <mikefrancis95@gmail.com>
AuthorDate: Sun Dec 8 22:49:21 2019 -0500
Commit: mfrancis95 <mikefrancis95@gmail.com>
CommitDate: Sun Dec 8 22:49:21 2019 -0500
Fix printf warning in memio.c
---
src/memio.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/memio.c b/src/memio.c
index 3cc769a3..299a66bf 100644
--- a/src/memio.c
+++ b/src/memio.c
@@ -189,7 +189,7 @@ int mem_fseek(MEMFILE *stream, signed long position, mem_rel_t whence)
}
else
{
- printf("Error seeking to %i\n", newpos);
+ printf("Error seeking to %u\n", newpos);
return -1;
}
}