diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-08-15 18:54:44 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-08-15 18:54:44 +0000 |
commit | de10237719db8101cd9487b257761d4721f857ab (patch) | |
tree | 7f315aa67f37c64626f881a94abc3d0d1da6e7e5 /source4/web | |
parent | 8e4ab747b02207671203d40cd2a78692da78faef (diff) | |
download | samba-de10237719db8101cd9487b257761d4721f857ab.tar.gz samba-de10237719db8101cd9487b257761d4721f857ab.tar.bz2 samba-de10237719db8101cd9487b257761d4721f857ab.zip |
more fixes from the IRIX compiler (thanks herb!)
(This used to be commit 02d068ba7d81d6db25122144981c63f74ad44025)
Diffstat (limited to 'source4/web')
-rw-r--r-- | source4/web/neg_lang.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/web/neg_lang.c b/source4/web/neg_lang.c index da974f78a4..b09ab7b452 100644 --- a/source4/web/neg_lang.c +++ b/source4/web/neg_lang.c @@ -99,7 +99,7 @@ void web_set_lang(const char *lang_string) } str_list_free(&lang_list); - qsort(pl, lang_num, sizeof(struct pri_list), &qsort_cmp_list); + qsort(pl, lang_num, sizeof(struct pri_list), QSORT_CAST qsort_cmp_list); /* it's not an error to not initialise - we just fall back to the default */ |