Module Name:    src
Committed By:   hannken
Date:           Sun Apr 24 10:35:15 UTC 2022

Modified Files:
        src/sbin/fsck_msdos: boot.c

Log Message:
Cast read()/write() result to size_t to make this compile again.


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/sbin/fsck_msdos/boot.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sbin/fsck_msdos/boot.c
diff -u src/sbin/fsck_msdos/boot.c:1.24 src/sbin/fsck_msdos/boot.c:1.25
--- src/sbin/fsck_msdos/boot.c:1.24	Sat Apr 23 22:40:28 2022
+++ src/sbin/fsck_msdos/boot.c	Sun Apr 24 10:35:15 2022
@@ -27,7 +27,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: boot.c,v 1.24 2022/04/23 22:40:28 mlelstv Exp $");
+__RCSID("$NetBSD: boot.c,v 1.25 2022/04/24 10:35:15 hannken Exp $");
 #endif /* not lint */
 
 #include <stdlib.h>
@@ -132,7 +132,8 @@ readboot(int dosfs, struct bootblock *bo
 
 		if (lseek(dosfs, boot->FSInfo * boot->BytesPerSec, SEEK_SET)
 		    != boot->FSInfo * boot->BytesPerSec
-		    || read(dosfs, fsinfo, 2 * secsize) != 2 * secsize) {
+		    || (size_t)read(dosfs, fsinfo, 2 * secsize)
+		    != 2 * secsize) {
 			perr("could not read fsinfo block");
 			return FSFATAL;
 		}
@@ -181,7 +182,7 @@ readboot(int dosfs, struct bootblock *bo
 
 		if (lseek(dosfs, boot->Backup * boot->BytesPerSec, SEEK_SET)
 		    != boot->Backup * boot->BytesPerSec
-		    || read(dosfs, backup, secsize) != secsize) {
+		    || (size_t)read(dosfs, backup, secsize) != secsize) {
 			perr("could not read backup bootblock");
 			free(fsinfo);
 			free(backup);
@@ -307,7 +308,8 @@ writefsinfo(int dosfs, struct bootblock 
 
 	if (lseek(dosfs, boot->FSInfo * boot->BytesPerSec, SEEK_SET)
 	    != boot->FSInfo * boot->BytesPerSec
-	    || read(dosfs, fsinfo, 2 * boot->BytesPerSec) != 2 * boot->BytesPerSec) {
+	    || (size_t)read(dosfs, fsinfo, 2 * boot->BytesPerSec)
+	    != 2 * boot->BytesPerSec) {
 		perr("could not read fsinfo block");
 		free(fsinfo);
 		return FSFATAL;
@@ -322,7 +324,8 @@ writefsinfo(int dosfs, struct bootblock 
 	fsinfo[0x1ef] = (u_char)(boot->FSNext >> 24);
 	if (lseek(dosfs, boot->FSInfo * boot->BytesPerSec, SEEK_SET)
 	    != boot->FSInfo * boot->BytesPerSec
-	    || write(dosfs, fsinfo, 2 * boot->BytesPerSec) != 2 * boot->BytesPerSec) {
+	    || (size_t)write(dosfs, fsinfo, 2 * boot->BytesPerSec)
+	    != 2 * boot->BytesPerSec) {
 		perr("Unable to write FSInfo");
 		free(fsinfo);
 		return FSFATAL;

Reply via email to