summaryrefslogtreecommitdiff
path: root/src/cssparser.cc
diff options
context:
space:
mode:
authorcorvid <corvid@lavabit.com>2009-09-20 02:47:53 +0000
committercorvid <corvid@lavabit.com>2009-09-20 02:47:53 +0000
commitda3f5268045b5edff01b53f475a56cb0795c7bb1 (patch)
treedfef39b21438155350b5f755893fe5878a15b1cc /src/cssparser.cc
parent6a1945e459f5c4ecd0ec89b6501e0daf10f77b41 (diff)
trim some spaces
Diffstat (limited to 'src/cssparser.cc')
-rw-r--r--src/cssparser.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cssparser.cc b/src/cssparser.cc
index 2550e74e..5ef53dcf 100644
--- a/src/cssparser.cc
+++ b/src/cssparser.cc
@@ -685,9 +685,9 @@ bool CssParser::parseRgbColorComponent(int32_t *cc, int *percentage) {
MSG_CSS("expected integer not found in %s color\n", "rgb");
return false;
}
-
+
*cc = strtol(tval, NULL, 10);
-
+
nextToken();
if (ttype == CSS_TK_CHAR && tval[0] == '%') {
if (*percentage == 0) {