qcacld-3.0: Fix split strings in lim_send_meas_report_frame()

lim_send_meas_report_frame() contains several instances of
user-visible strings that are split, which violates the coding
standard, so merge them.

Change-Id: Ifca7aac555df1fffc6b3669091c3cab245378be0
CRs-Fixed: 2369213
diff --git a/core/mac/src/pe/lim/lim_send_management_frames.c b/core/mac/src/pe/lim/lim_send_management_frames.c
index 780310a..999fb80 100644
--- a/core/mac/src/pe/lim/lim_send_management_frames.c
+++ b/core/mac/src/pe/lim/lim_send_management_frames.c
@@ -3247,8 +3247,7 @@
 							    &frm.MeasurementReport);
 		break;
 	default:
-		pe_err("Unknown measurement type %d in limSen"
-		       "dMeasReportFrame",
+		pe_err("Unknown measurement type %d in limSendMeasReportFrame",
 			pMeasReqFrame->measReqIE.measType);
 		return QDF_STATUS_E_FAILURE;
 	}
@@ -3274,8 +3273,8 @@
 				 (uint16_t) nBytes, (void **)&pFrame,
 				 (void **)&pPacket);
 	if (!QDF_IS_STATUS_SUCCESS(qdf_status)) {
-		pe_err("Failed to allocate %d bytes for a "
-		       "De-Authentication", nBytes);
+		pe_err("Failed to allocate %d bytes for a De-Authentication",
+		       nBytes);
 		return QDF_STATUS_E_FAILURE;
 	}
 	/* Paranoia: */