diff options
| author | Campbell Barton <ideasman42@gmail.com> | 2011-06-25 15:35:01 +0000 |
|---|---|---|
| committer | Campbell Barton <ideasman42@gmail.com> | 2011-06-25 15:35:01 +0000 |
| commit | dcf765f3dcbff2e65428e0f002bb5ea3648940f0 (patch) | |
| tree | 307d762b00b7ef44a24b31cb434d00e46ede7140 /src/libcroco | |
| parent | added a Modules cmake dir, only use for find_package, reference cmake include... (diff) | |
| download | inkscape-dcf765f3dcbff2e65428e0f002bb5ea3648940f0.tar.gz inkscape-dcf765f3dcbff2e65428e0f002bb5ea3648940f0.zip | |
warning cleanup (no functional changes)
- enclose && / || with brackets to avoid ambiguity.
- don't cast from booleans to pointers.
(bzr r10359)
Diffstat (limited to 'src/libcroco')
| -rw-r--r-- | src/libcroco/cr-parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcroco/cr-parser.c b/src/libcroco/cr-parser.c index 5b0a56f32..a8e2de5a3 100644 --- a/src/libcroco/cr-parser.c +++ b/src/libcroco/cr-parser.c @@ -2408,7 +2408,7 @@ cr_parser_parse_stylesheet (CRParser * a_this) import_string, NULL, &location) ; - if ((PRIVATE (a_this)->sac_handler->resolve_import == TRUE)) { + if (PRIVATE (a_this)->sac_handler->resolve_import == TRUE) { /* *TODO: resolve the *import rule. |
