diff --git a/Source/SWIG1.1/ascii.cxx b/Source/SWIG1.1/ascii.cxx index 79c898c83..fa8c60f27 100644 --- a/Source/SWIG1.1/ascii.cxx +++ b/Source/SWIG1.1/ascii.cxx @@ -308,7 +308,7 @@ void ASCII::separator() { void ASCII::init(char *filename) { char f[256]; - sprintf(f,"%s.doc",filename); + sprintf(f,"%s.txt",filename); sprintf(fn,"%s",filename); f_doc = fopen(f,"w"); if (f_doc == NULL) { @@ -328,7 +328,7 @@ void ASCII::close(void) { fclose(f_doc); if (Verbose) - fprintf(stderr,"Documentation written to %s.doc\n", fn); + fprintf(stderr,"Documentation written to %s.txt\n", fn); }