[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Changes to m4/src/Attic/builtin.c,v [branch-1_4]
From: |
Eric Blake |
Subject: |
Changes to m4/src/Attic/builtin.c,v [branch-1_4] |
Date: |
Wed, 01 Nov 2006 13:44:56 +0000 |
CVSROOT: /sources/m4
Module name: m4
Branch: branch-1_4
Changes by: Eric Blake <ericb> 06/11/01 13:44:54
Index: src/builtin.c
===================================================================
RCS file: /sources/m4/m4/src/Attic/builtin.c,v
retrieving revision 1.1.1.1.2.48
retrieving revision 1.1.1.1.2.49
diff -u -b -r1.1.1.1.2.48 -r1.1.1.1.2.49
--- src/builtin.c 31 Oct 2006 14:13:41 -0000 1.1.1.1.2.48
+++ src/builtin.c 1 Nov 2006 13:44:54 -0000 1.1.1.1.2.49
@@ -1199,7 +1199,7 @@
include (int argc, token_data **argv, boolean silent)
{
FILE *fp;
- const char *name;
+ char *name;
if (bad_argc (argv[0], argc, 2, 2))
return;
@@ -1214,7 +1214,7 @@
}
push_file (fp, name, TRUE);
- free ((char *) name);
+ free (name);
}
/*------------------------------------------------.
- Changes to m4/src/Attic/builtin.c,v [branch-1_4],
Eric Blake <=