diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-10 21:24:03 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-10 21:24:03 +0100 |
commit | b6dbc5e70805fd5905ac6e1ec46234ae0020c4cb (patch) | |
tree | a28cb5600017823cf8941166b1f8f3f259375c82 /sal | |
parent | 235136c17868627412db8dda148d3c4103907c0c (diff) |
-Werror=shadow
Change-Id: I82d2d44fd43ff2a641df74b9e05aea01991d001c
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/unx/nlsupport.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/osl/unx/nlsupport.cxx b/sal/osl/unx/nlsupport.cxx index 38e49be20a9c..92a282879c07 100644 --- a/sal/osl/unx/nlsupport.cxx +++ b/sal/osl/unx/nlsupport.cxx @@ -50,9 +50,9 @@ typedef struct { *****************************************************************************/ static int -pair_compare (const char *key, const pair *pair) +pair_compare (const char *key, const pair *pair_) { - int result = rtl_str_compareIgnoreAsciiCase( key, pair->key ); + int result = rtl_str_compareIgnoreAsciiCase( key, pair_->key ); return result; } |