diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-10-12 19:35:26 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-10-12 19:35:26 +0300 |
commit | 265ae345c01335a4d9d28bd23b86c43705062497 (patch) | |
tree | 4153e0c2f5f51d21e358c5c46b08abe1de6f6876 /comphelper | |
parent | 2c096cb5b0154a94b7c8a59d1e7c7943ac699910 (diff) |
Bin obsolete CDECL crack
Change-Id: I69da428711681d14fd48c198fbce0bb545665b5a
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/misc/syntaxhighlight.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/source/misc/syntaxhighlight.cxx b/comphelper/source/misc/syntaxhighlight.cxx index 11cfc341bceb..c1f4ca5f19ac 100644 --- a/comphelper/source/misc/syntaxhighlight.cxx +++ b/comphelper/source/misc/syntaxhighlight.cxx @@ -224,7 +224,7 @@ static const char* strListSqlKeyWords[] = { }; -extern "C" int CDECL compare_strings( const void *arg1, const void *arg2 ) +static int compare_strings( const void *arg1, const void *arg2 ) { return strcmp( (char *)arg1, *(char **)arg2 ); } |