diff options
| author | Alex Valavanis <valavanisalex@gmail.com> | 2013-11-03 11:58:36 +0000 |
|---|---|---|
| committer | Alex Valavanis <valavanisalex@gmail.com> | 2013-11-03 11:58:36 +0000 |
| commit | ffeaaaf40832d09a6c791c7c1d028c00875641e8 (patch) | |
| tree | a8f0e0d354a8e5e29c40fdd5f9e5e5c20f169bb1 /src | |
| parent | libcroco: Merge upstream 0.6.8 changes (diff) | |
| download | inkscape-ffeaaaf40832d09a6c791c7c1d028c00875641e8.tar.gz inkscape-ffeaaaf40832d09a6c791c7c1d028c00875641e8.zip | |
Fix typo in libcroco/cr-rgb.c
(bzr r12771)
Diffstat (limited to 'src')
| -rw-r--r-- | src/libcroco/cr-additional-sel.c | 2 | ||||
| -rw-r--r-- | src/libcroco/cr-rgb.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libcroco/cr-additional-sel.c b/src/libcroco/cr-additional-sel.c index 7ed9e2c17..c6cb6cb57 100644 --- a/src/libcroco/cr-additional-sel.c +++ b/src/libcroco/cr-additional-sel.c @@ -47,7 +47,7 @@ cr_additional_sel_new (void) { CRAdditionalSel *result = NULL; - result = (CRAdditionalSel *)g_try_malloc (sizeof (CRAdditionalSel)); + result = g_try_malloc (sizeof (CRAdditionalSel)); if (result == NULL) { cr_utils_trace_debug ("Out of memory"); diff --git a/src/libcroco/cr-rgb.c b/src/libcroco/cr-rgb.c index a9489e04c..a48490f30 100644 --- a/src/libcroco/cr-rgb.c +++ b/src/libcroco/cr-rgb.c @@ -30,7 +30,7 @@ #include "cr-term.h" #include "cr-parser.h" -tatic const CRRgb gv_standard_colors[] = { +static const CRRgb gv_standard_colors[] = { {(const guchar*)"aliceblue", 240, 248, 255, FALSE, FALSE, FALSE, {0,0,0}}, {(const guchar*)"antiquewhite", 250, 235, 215, FALSE, FALSE, FALSE, {0,0,0}}, {(const guchar*)"aqua", 0, 255, 255, FALSE, FALSE, FALSE, {0,0,0}}, |
