Closed
Bug 14563
Opened 26 years ago
Closed 26 years ago
fix compiler grumble in modules/libimg/png/pngmem.c
Categories
(SeaMonkey :: Build Config, defect, P3)
SeaMonkey
Build Config
Tracking
(Not tracked)
RESOLVED
FIXED
M11
People
(Reporter: colin, Assigned: colin)
Details
My compiiler (and probably others too) grumble about the fact that
there's something following a directive. Needed change follows.
Index: pngmem.c
===================================================================
RCS file: /cvsroot/mozilla/modules/libimg/png/pngmem.c,v
retrieving revision 3.2
diff -u -r3.2 pngmem.c
--- pngmem.c 1998/12/08 19:36:45 3.2
+++ pngmem.c 1999/09/22 12:03:52
@@ -130,7 +130,7 @@
png_malloc_default(png_structp png_ptr, png_uint_32 size)
{
png_voidp ret;
-#endif PNG_USER_MEM_SUPPORTED
+#endif /* PNG_USER_MEM_SUPPORTED */
#ifdef PNG_MAX_MALLOC_64K
if (size > (png_uint_32)65536L)
Assignee | ||
Updated•26 years ago
|
Status: NEW → ASSIGNED
Target Milestone: M11
Colin:
You need to get the png module owner, newt@pobox.com,
to approve the change.
-pn
Comment 2•26 years ago
|
||
Approved! And I'll make sure that's fixed in 1.0.4 before it hits the wire.
Thanks,
Greg
Assignee | ||
Comment 3•26 years ago
|
||
Will check in just as soon as the tree opens.
Assignee | ||
Updated•26 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 4•26 years ago
|
||
Checked in. Revision 3.3.
Updated•20 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•