diff options
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; } |