layers: #484 Remove stray newline in swapchain validation message.
diff --git a/layers/swapchain.cpp b/layers/swapchain.cpp
index a91674b..9172780 100644
--- a/layers/swapchain.cpp
+++ b/layers/swapchain.cpp
@@ -1728,7 +1728,7 @@
if ((semaphore == VK_NULL_HANDLE) && (fence == VK_NULL_HANDLE)) {
skipCall |= LOG_ERROR(VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT, device, "VkDevice", SWAPCHAIN_NO_SYNC_FOR_ACQUIRE,
"%s() called with both the semaphore and fence parameters set to "
- "VK_NULL_HANDLE (at least one should be used)\n.", __FUNCTION__);
+ "VK_NULL_HANDLE (at least one should be used).", __FUNCTION__);
}
SwpSwapchain *pSwapchain = &my_data->swapchainMap[swapchain];
SwpPhysicalDevice *pPhysicalDevice = pDevice->pPhysicalDevice;