]> git.saurik.com Git - bison.git/commitdiff
* src/files.c (compute_output_file_names): Fix.
authorMarc Autret <autret_m@epita.fr>
Mon, 24 Sep 2001 14:14:58 +0000 (14:14 +0000)
committerMarc Autret <autret_m@epita.fr>
Mon, 24 Sep 2001 14:14:58 +0000 (14:14 +0000)
ChangeLog
src/files.c

index a5985176258beacfffc8cf534deb89c0e7440024..5a17bbf0cb522b7efb340fb77bee40b54095466a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-09-24  Marc Autret  <autret_m@epita.fr>
+
+       * src/files.c (compute_output_file_names): Fix.
+
 2001-09-24  Marc Autret  <autret_m@epita.fr>, Akim Demaille  <akim@epita.fr>
 
        * src/reader.c (reader): Remove call to free_symtab ().
index 03ca07a23aeb890380fcf3c31caaa287af492bea..0051d3f484feea3f91c6ffb70d71230401fcf1d1 100644 (file)
@@ -420,7 +420,7 @@ compute_output_file_names (void)
 
   attrsfile = stringappend (short_base_name, EXT_STYPE_H);
 #ifndef MSDOS
-  stringappend (attrsfile, header_extension);
+  attrsfile = stringappend (attrsfile, header_extension);
 #endif /* MSDOS */
 
 }