apps/pulse Fix PVS-2010

*	Replace unformatted printf with puts

	*	removed extraneous spaces

Change-Id: I5c707a22dca703bf6a594ab6e85dc2c24bc3911a
Reviewed-on: https://review.haiku-os.org/c/966
Reviewed-by: Adrien Destugues <[email protected]>
This commit is contained in:
Rob Gill
2019-01-29 16:11:52 +00:00
committed by waddlesplash
parent d27546c10f
commit 80cdc887fa
+2 -2
View File
@@ -240,9 +240,9 @@ GetMinimumViewWidth()
void void
Usage() Usage()
{ {
printf(B_TRANSLATE("Usage: Pulse [--mini] [-w width] [--width=width]\n" puts(B_TRANSLATE("Usage: Pulse [--mini] [-w width] [--width=width]\n"
"\t[--deskbar] [--normal] [--framecolor 0xrrggbb]\n" "\t[--deskbar] [--normal] [--framecolor 0xrrggbb]\n"
"\t[--activecolor 0xrrggbb] [--idlecolor 0xrrggbb]\n")); "\t[--activecolor 0xrrggbb] [--idlecolor 0xrrggbb]"));
exit(0); exit(0);
} }