msdos warning bit

../sys/msdos/font.c: In function 'load_font':
../sys/msdos/font.c:89:22: warning: unused variable 'j' [-Wunused-variable]
   89 |             unsigned j;
      |                      ^
This commit is contained in:
nhmall
2026-06-12 11:00:28 -04:00
parent b0e24236e3
commit 8e9d23b578
+1 -1
View File
@@ -86,7 +86,7 @@ load_font(const char *filename)
bufsize = 0;
i = 0;
while (i < length) {
unsigned j;
/* unsigned j; */
size = fread(buf + bufsize, 1, sizeof(buf) - bufsize, fp);
if (ferror(fp)) goto error;