svn commit: r305117 - stable/11/sbin/camcontrol
Alexander Motin
mav at FreeBSD.org
Wed Aug 31 09:49:27 UTC 2016
Author: mav
Date: Wed Aug 31 09:49:26 2016
New Revision: 305117
URL: https://svnweb.freebsd.org/changeset/base/305117
Log:
MFC r304751: Fix minor copy/paste bug.
Modified:
stable/11/sbin/camcontrol/camcontrol.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sbin/camcontrol/camcontrol.c
==============================================================================
--- stable/11/sbin/camcontrol/camcontrol.c Wed Aug 31 09:23:09 2016 (r305116)
+++ stable/11/sbin/camcontrol/camcontrol.c Wed Aug 31 09:49:26 2016 (r305117)
@@ -7515,7 +7515,7 @@ smpphycontrol(struct cam_device *device,
response = malloc(sizeof(*response));
if (response == NULL) {
warn("%s: unable to allocate %zd bytes", __func__,
- sizeof(*request));
+ sizeof(*response));
retval = 1;
goto bailout;
}
More information about the svn-src-stable
mailing list