Skip to content

Commit

Permalink
Fixed: Use the correct type size with Svg_FromDef()
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Feb 9, 2012
1 parent aedfaf8 commit 719c409
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doomsday/engine/portable/include/svg.h
Expand Up @@ -66,6 +66,6 @@ svgid_t Svg_UniqueId(Svg* svg);
*
* @return Newly created Svg instance if definition was valid else @a NULL
*/
Svg* Svg_FromDef(svgid_t uniqueId, const def_svgline_t* lines, size_t numLines);
Svg* Svg_FromDef(svgid_t uniqueId, const def_svgline_t* lines, uint numLines);

#endif /* LIBDENG_SVG_H */
2 changes: 1 addition & 1 deletion doomsday/engine/portable/src/svg.c
Expand Up @@ -181,7 +181,7 @@ Svg* Svg_FromDef(svgid_t uniqueId, const def_svgline_t* lines, uint lineCount)
const def_svgline_t* slIt;
const Point2Rawf* spIt;
uint finalLineCount;
Point2Rawf* dpIt;\
Point2Rawf* dpIt;
SvgLine* dlIt;
uint i, j;
Svg* svg;
Expand Down

0 comments on commit 719c409

Please sign in to comment.