bitset: fix an incorrect error message.

* lib/bitset_stats.c: here.
	Reported by Stefano Lattarini.
This commit is contained in:
Akim Demaille
2012-02-19 10:18:29 +01:00
parent 7880130e3e
commit bd65f25570
2 changed files with 2 additions and 1 deletions

1
THANKS
View File

@@ -96,6 +96,7 @@ Sebastian Setzer sebastian.setzer.ext@siemens.com
Sebastien Fricker sebastien.fricker@gmail.com
Sergei Steshenko sergstesh@yahoo.com
Shura debil_urod@ngs.ru
Stefano Lattarini stefano.lattarini@gmail.com
Steve Murphy murf@parsetree.com
Summum Bonum sum@geekhouse.org
Thiru Ramakrishnan thiru.ramakrishnan@gmail.com

View File

@@ -284,7 +284,7 @@ bitset_stats_write (const char *file_name)
{
if (fwrite (&bitset_stats_info_data, sizeof (bitset_stats_info_data),
1, file) != 1)
perror (_("cannot not write stats file"));
perror (_("cannot write stats file"));
if (fclose (file) != 0)
perror (_("cannot write stats file"));
}