groff-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Groff-commit] groff ./ChangeLog src/devices/grohtml/post-html...


From: Werner LEMBERG
Subject: [Groff-commit] groff ./ChangeLog src/devices/grohtml/post-html...
Date: Fri, 06 May 2005 18:07:27 -0400

CVSROOT:        /cvsroot/groff
Module name:    groff
Branch:         
Changes by:     Werner LEMBERG <address@hidden> 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  <address@hidden>
+
+       * src/devices/grohtml/post-html.cpp (assert_state::~assert_state):
+       Use `char *' cast for a_delete.
+
 2004-05-03  Werner LEMBERG  <address@hidden>
 
        * 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;
   }
 }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]