apps/codycam Fix PVS1347,1348

*	Replace unformatted printf with puts

Change-Id: If4e41bbc58e8a03fdcbee3f2d2efc0a9ff9fc2a2
Reviewed-on: https://review.haiku-os.org/c/965
Reviewed-by: Adrien Destugues <[email protected]>
Reviewed-by: Jérôme Duval <[email protected]>
This commit is contained in:
Rob Gill
2019-01-29 12:18:43 +00:00
committed by Jérôme Duval
parent 2f8e8732e1
commit b726920e3f
+2 -2
View File
@@ -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;
}