make gtk1 compile again

svn path=/trunk/; revision=21854
This commit is contained in:
Ronnie Sahlberg 2007-05-21 02:38:19 +00:00
parent bded91f43d
commit c1040f6c5d
1 changed files with 2 additions and 1 deletions

View File

@ -957,7 +957,8 @@ convert_string_case(const char *string, gboolean case_insensitive)
gsize
g_strlcat(gchar *dst, gchar *src, gsize size)
{
int strl, strs;
gsize strl;
int strs;
strl=strlen(dst);
strs=strlen(src);
if(strl<size)