diff src/variables.cc @ 1363:ed5757e3333b

[project @ 1995-09-05 23:26:59 by jwe]
author jwe
date Tue, 05 Sep 1995 23:26:59 +0000
parents dc9c01f66a19
children 083787534e18
line wrap: on
line diff
--- a/src/variables.cc
+++ b/src/variables.cc
@@ -129,7 +129,7 @@
 {
   tree_fvc *ans = 0;
 
-  char *fcn_name = arg.string_value ();
+  const char *fcn_name = arg.string_value ();
 
   if (error_state)
     {
@@ -188,7 +188,7 @@
       return retval;
     }
 
-  char *name = args(0).string_value ();
+  const char *name = args(0).string_value ();
 
   if (error_state)
     {
@@ -847,7 +847,7 @@
 
       if (! error_state && val.is_string ())
 	{
-	  char *s = val.string_value ();
+	  const char *s = val.string_value ();
 
 	  if (s)
 	    retval = strsave (s);