projects
/
graphviz
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f3a064c
)
Fix bug 2059
author
erg
<devnull@localhost>
Wed, 20 Oct 2010 15:23:00 +0000
(15:23 +0000)
committer
erg
<devnull@localhost>
Wed, 20 Oct 2010 15:23:00 +0000
(15:23 +0000)
lib/common/htmllex.c
patch
|
blob
|
history
diff --git
a/lib/common/htmllex.c
b/lib/common/htmllex.c
index 3cb1dbd280d6cfc53f2734dcf8c201a3eb3fc6b8..4c618e804c6e181e3e1a5cc0a41322f3b8e864e5 100644
(file)
--- a/
lib/common/htmllex.c
+++ b/
lib/common/htmllex.c
@@
-318,7
+318,7
@@
static int rowspanfn(htmlcell_t * p, char *v)
agerr(AGWARN, "ROWSPAN value cannot be 0 - ignored\n");
return 1;
}
- p->rspan = (unsigned
char
) u;
+ p->rspan = (unsigned
short
) u;
return 0;
}
@@
-332,7
+332,7
@@
static int colspanfn(htmlcell_t * p, char *v)
agerr(AGWARN, "COLSPAN value cannot be 0 - ignored\n");
return 1;
}
- p->cspan = (unsigned
char
) u;
+ p->cspan = (unsigned
short
) u;
return 0;
}