From b726920e3faafcd055b51d0a11c432b34a604bf5 Mon Sep 17 00:00:00 2001 From: Rob Gill Date: Tue, 29 Jan 2019 21:38:07 +1000 Subject: [PATCH] apps/codycam Fix PVS1347,1348 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Replace unformatted printf with puts Change-Id: If4e41bbc58e8a03fdcbee3f2d2efc0a9ff9fc2a2 Reviewed-on: https://review.haiku-os.org/c/965 Reviewed-by: Adrien Destugues Reviewed-by: Jérôme Duval --- src/apps/codycam/VideoConsumer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/codycam/VideoConsumer.cpp b/src/apps/codycam/VideoConsumer.cpp index 15d3440437..736a22c1ca 100644 --- a/src/apps/codycam/VideoConsumer.cpp +++ b/src/apps/codycam/VideoConsumer.cpp @@ -95,9 +95,9 @@ VideoConsumer::~VideoConsumer() Quit(); if (fWindow) { - printf(B_TRANSLATE("Locking the window\n")); + puts(B_TRANSLATE("Locking the window")); if (fWindow->Lock()) { - printf(B_TRANSLATE("Closing the window\n")); + puts(B_TRANSLATE("Closing the window")); fWindow->Close(); fWindow = 0; }