CVSROOT: /cvsroot/groff
Module name: groff
Branch:
Changes by: Werner LEMBERG <[EMAIL PROTECTED]> 05/05/06 22:07:27
Modified files:
. : ChangeLog
src/devices/grohtml: post-html.cpp
Log message:
* src/devices/grohtml/post-html.cpp (assert_state::~assert_state):
Use `char *' cast for a_delete.
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/groff/groff/ChangeLog.diff?tr1=1.820&tr2=1.821&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/groff/groff/src/devices/grohtml/post-html.cpp.diff?tr1=1.23&tr2=1.24&r1=text&r2=text
Patches:
Index: groff/ChangeLog
diff -u groff/ChangeLog:1.820 groff/ChangeLog:1.821
--- groff/ChangeLog:1.820 Tue May 3 20:00:51 2005
+++ groff/ChangeLog Fri May 6 22:07:26 2005
@@ -1,3 +1,8 @@
+2004-05-06 Jeff Conrad <[EMAIL PROTECTED]>
+
+ * src/devices/grohtml/post-html.cpp (assert_state::~assert_state):
+ Use `char *' cast for a_delete.
+
2004-05-03 Werner LEMBERG <[EMAIL PROTECTED]>
* src/libs/libgroff/maxpathname.cpp: Include stdlib.h.
Index: groff/src/devices/grohtml/post-html.cpp
diff -u groff/src/devices/grohtml/post-html.cpp:1.23
groff/src/devices/grohtml/post-html.cpp:1.24
--- groff/src/devices/grohtml/post-html.cpp:1.23 Tue May 3 10:05:32 2005
+++ groff/src/devices/grohtml/post-html.cpp Fri May 6 22:07:27 2005
@@ -1688,15 +1688,15 @@
while (xhead != NULL) {
t = xhead;
xhead = xhead->next;
- a_delete t->val;
- a_delete t->id;
+ a_delete (char *)t->val;
+ a_delete (char *)t->id;
delete t;
}
while (yhead != NULL) {
t = yhead;
yhead = yhead->next;
- a_delete t->val;
- a_delete t->id;
+ a_delete (char *)t->val;
+ a_delete (char *)t->id;
delete t;
}
}
_______________________________________________
Groff-commit mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/groff-commit