Constification

This commit is contained in:
Sylvain Pion 2007-03-08 10:39:00 +00:00
parent df0231a15a
commit 82f994833b
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ int main (int argc, char **argv)
{
// Get the name of the input file from the command line, or use the default
// points.dat file if no command-line parameters are given.
char *filename = "ch_points.dat";
const char *filename = "ch_points.dat";
if (argc > 1)
filename = argv[1];