cssparser: Fix typo where we used "uint" for a type

Interestingly this works for gcc, but breaks on MSVC.
This commit is contained in:
Benjamin Otte
2011-05-22 06:07:18 +02:00
parent 21236cf270
commit 4c6721d096
2 changed files with 2 additions and 2 deletions

View File

@ -515,7 +515,7 @@ _gtk_css_parser_try_int (GtkCssParser *parser,
gboolean
_gtk_css_parser_try_uint (GtkCssParser *parser,
uint *value)
guint *value)
{
guint64 result;
char *end;