svn commit: r298275 - head/sys/boot/pc98/libpc98

Allan Jude allanjude at FreeBSD.org
Tue Apr 19 15:46:23 UTC 2016


Author: allanjude
Date: Tue Apr 19 15:46:21 2016
New Revision: 298275
URL: https://svnweb.freebsd.org/changeset/base/298275

Log:
  Fix pc98 build error introduced in r298230
  
  Submitted by:	Toomas Soome <tsoome at me.com>
  Spotted by:	bz
  Differential Revision:	https://reviews.freebsd.org/D6002

Modified:
  head/sys/boot/pc98/libpc98/biosdisk.c

Modified: head/sys/boot/pc98/libpc98/biosdisk.c
==============================================================================
--- head/sys/boot/pc98/libpc98/biosdisk.c	Tue Apr 19 15:39:46 2016	(r298274)
+++ head/sys/boot/pc98/libpc98/biosdisk.c	Tue Apr 19 15:46:21 2016	(r298275)
@@ -118,9 +118,9 @@ static void	bd_printbsdslice(struct open
 
 static int	bd_init(void);
 static int	bd_strategy(void *devdata, int flag, daddr_t dblk,
-		    size_t size, char *buf, size_t *rsize);
+		    size_t offset, size_t size, char *buf, size_t *rsize);
 static int	bd_realstrategy(void *devdata, int flag, daddr_t dblk,
-		    size_t size, char *buf, size_t *rsize);
+		    size_t offset, size_t size, char *buf, size_t *rsize);
 static int	bd_open(struct open_file *f, ...);
 static int	bd_close(struct open_file *f);
 static void	bd_print(int verbose);


More information about the svn-src-all mailing list