On Wed, 2011-02-23 at 17:17 +0000, Bruce Cran wrote: > Author: brucec > Date: Wed Feb 23 17:17:05 2011 > New Revision: 218974 > URL: http://svn.freebsd.org/changeset/base/218974 > > Log: > Handle memory allocation failures in include(). >
> if (EFI_ERROR(status)) > - printf("%s: rw=%d, status=%lu\n", __func__, rw, status); > + printf("%s: rw=%d, status=%u\n", __func__, rw, status); > return (efi_status_to_errno(status)); > } I accidentally included this unrelated change too - 'status' is of type unsigned int, not unsigned long. -- Bruce Cran _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"