diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/css.cc | 3 | ||||
-rw-r--r-- | src/css.hh | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -21,7 +21,8 @@ using namespace dw::core::style; void CssProperty::print () { fprintf (stderr, "%s - %d\n", - CssParser::propertyNameString((CssPropertyName)name),value.intVal); + CssParser::propertyNameString((CssPropertyName)name), + (int)value.intVal); } CssPropertyList::~CssPropertyList () { @@ -225,7 +225,7 @@ typedef enum { } CssPropertyName; typedef union { - int intVal; + int32_t intVal; char *strVal; } CssPropertyValue; |