svn commit: r328941 - stable/11/sys/boot/mips/beri/loader
Kyle Evans
kevans at FreeBSD.org
Tue Feb 6 18:01:42 UTC 2018
Author: kevans
Date: Tue Feb 6 18:01:41 2018
New Revision: 328941
URL: https://svnweb.freebsd.org/changeset/base/328941
Log:
MFC r308774: loader: beri_sdcard_disk_print() needs to return int.
r308434 did change the return type for dv_print callbacks, but the return
type for beri_sdcard_disk_print() was left unchanged, causing compile errors.
Modified:
stable/11/sys/boot/mips/beri/loader/beri_disk_sdcard.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/boot/mips/beri/loader/beri_disk_sdcard.c
==============================================================================
--- stable/11/sys/boot/mips/beri/loader/beri_disk_sdcard.c Tue Feb 6 17:26:11 2018 (r328940)
+++ stable/11/sys/boot/mips/beri/loader/beri_disk_sdcard.c Tue Feb 6 18:01:41 2018 (r328941)
@@ -118,7 +118,7 @@ beri_sdcard_disk_close(struct open_file *f)
return (disk_close(dev));
}
-static void
+static int
beri_sdcard_disk_print(int verbose)
{
struct disk_devdesc dev;
More information about the svn-src-stable
mailing list