sal/osl/unx/nlsupport.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit b6dbc5e70805fd5905ac6e1ec46234ae0020c4cb Author: Stephan Bergmann <[email protected]> Date: Thu Mar 10 21:24:03 2016 +0100 -Werror=shadow Change-Id: I82d2d44fd43ff2a641df74b9e05aea01991d001c diff --git a/sal/osl/unx/nlsupport.cxx b/sal/osl/unx/nlsupport.cxx index 38e49be..92a2828 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; } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
