Closed
Bug 199
Opened 27 years ago
Closed 26 years ago
warning fix : ns/lib/layout/layblock.c
Categories
(MozillaClassic Graveyard :: Layout, defect, P3)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: rick, Assigned: nisheeth_mozilla)
Details
Created by Rick Osborne (rick@rixsoft.com) on Monday, April 13, 1998 6:59:11 PM PDT
Additional Details :
(In the continuing quest to eliminate even compiler warnings
... )
Var i is only used in an unsigned context, and is compared
against an unsigned struct member later. Therefore, should
be unsigned.
(1316) : warning C4018: ''<'' : signed/unsigned mismatch
--- layblock.old.c Wed Apr 08 17:52:23 1998
+++ layblock.c Mon Apr 13 22:01:25 1998
@@ -1271,5 +1271,5 @@ lo_insert_suppress_tags(MWContext
*conte
{
PA_Tag *end_tag;
- int32 i;
+ uint32 i;
/*
Updated•27 years ago
|
Assignee: nobody → {}
Component: Layout
Updated•27 years ago
|
Assignee: {} → djw
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 1•26 years ago
|
||
This patch was checked in a while back. Thanks Rick.
You need to log in
before you can comment on or make changes to this bug.
Description
•