From 96af1d283c9e144a5c0596ab1200dbc5abfccf9e Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sun, 19 May 2013 02:57:41 +0200 Subject: [PATCH] PackageFileHeapWriter: Small style fix --- src/kits/package/hpkg/PackageFileHeapWriter.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/kits/package/hpkg/PackageFileHeapWriter.cpp b/src/kits/package/hpkg/PackageFileHeapWriter.cpp index 1ca2fe747a..216fbf19b7 100644 --- a/src/kits/package/hpkg/PackageFileHeapWriter.cpp +++ b/src/kits/package/hpkg/PackageFileHeapWriter.cpp @@ -414,14 +414,14 @@ PackageFileHeapWriter::RemoveDataRanges( chunk.buffer, chunk.compressedSize, decompressionBuffer, chunk.uncompressedSize, uncompressedSize); if (error != B_OK) { - fErrorOutput->PrintError("Failed to decompress data chunk: %s\n", - strerror(error)); + fErrorOutput->PrintError("Failed to decompress data chunk: " + "%s\n", strerror(error)); throw error; } if (uncompressedSize != chunk.uncompressedSize) { - fErrorOutput->PrintError("Failed to decompress data chunk: chunk " - "size mismatch\n"); + fErrorOutput->PrintError("Failed to decompress data chunk: " + "chunk size mismatch\n"); throw status_t(B_ERROR); }