tCompiler warning silenced. - vaccinewars - be a doctor and try to vaccinate the world
git clone git://src.adamsgaard.dk/vaccinewars
Log
Files
Refs
README
LICENSE
---
commit bd94838de277b939254dfe43d25bfce05db014d0
parent c93e1368ae9043a09ee189fc468a024fba9036c4
Author: Ben Webb 
Date:   Wed, 11 Sep 2002 11:46:22 +0000

Compiler warning silenced.


Diffstat:
  M src/gtkport/gtkport.c               |       4 ++--

1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/gtkport/gtkport.c b/src/gtkport/gtkport.c
t@@ -5657,8 +5657,8 @@ void DisplayHTML(GtkWidget *parent, const gchar *bin, const gchar *target)
   int status;
 
   if (target && target[0] && bin && bin[0]) {
-    args[0] = bin;
-    args[1] = target;
+    args[0] = (char *)bin;
+    args[1] = (char *)target;
     args[2] = NULL;
     /* Fork twice so that the spawned process gets init as its parent */
     pid = fork();