diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-18 14:39:52 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-19 09:28:00 +0200 |
commit | 0f7e64f3edbc1a49e9681d12ce24326150a8a675 (patch) | |
tree | 8f7129134e134607f4913736723f3e49a2392bdb /desktop/unx | |
parent | 7b83ed313e0e54cb7da4525d13f63937e10867fa (diff) |
loplugin:constparams in desktop
Change-Id: Idba3acbd1e6ad5e1ce1cae9f80f764906ab8b143
Reviewed-on: https://gerrit.libreoffice.org/40157
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'desktop/unx')
-rw-r--r-- | desktop/unx/source/args.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/unx/source/args.c b/desktop/unx/source/args.c index bc4c960a2583..9a9b8f913d5d 100644 --- a/desktop/unx/source/args.c +++ b/desktop/unx/source/args.c @@ -14,7 +14,7 @@ /* do we start -env: */ static int -is_env_arg (rtl_uString *str) +is_env_arg (rtl_uString const *str) { return !rtl_ustr_ascii_compare_WithLength (str->buffer, 5, "-env:"); } |