diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-03-12 00:19:26 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-03-12 11:28:26 +0100 |
commit | fe3feff8bb72fafd721ede0be5cb3d0f98a76bd5 (patch) | |
tree | f73c5166ee7c15fc23341e89c8fd15fe33378470 /cli_ure | |
parent | 1a8b6b3f1dcb73c31e28f47e1d06eda1ef6e0ced (diff) |
cli_ure: PVS-Studio V618 non-const format string
Change-Id: I54834111ce8aac91f2a6605473bef5eeaa4fb171
Diffstat (limited to 'cli_ure')
-rw-r--r-- | cli_ure/source/climaker/climaker_app.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli_ure/source/climaker/climaker_app.cxx b/cli_ure/source/climaker/climaker_app.cxx index 7d5b808949d4..b8e3f0f7bb55 100644 --- a/cli_ure/source/climaker/climaker_app.cxx +++ b/cli_ure/source/climaker/climaker_app.cxx @@ -258,7 +258,7 @@ SAL_IMPLEMENT_MAIN() sal_uInt32 nCount = osl_getCommandArgCount(); if (0 == nCount) { - printf( s_usingText ); + puts( s_usingText ); return 0; } @@ -310,7 +310,7 @@ SAL_IMPLEMENT_MAIN() // options if (is_option( info_help, &nPos )) { - printf( s_usingText ); + puts( s_usingText ); return 0; } else if (read_argument( &cmd_arg, info_types, &nPos )) |