Eliminate version string duplication
Corresponding to flashrom svn r659.
Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
diff --git a/print.c b/print.c
index a1dfb86..9b6ec2a 100644
--- a/print.c
+++ b/print.c
@@ -718,7 +718,7 @@
{
time_t t = time(NULL);
- printf(wiki_header, ctime(&t), FLASHROM_VERSION);
+ printf(wiki_header, ctime(&t), flashrom_version);
print_supported_chips_wiki();
print_supported_chipsets_wiki();
print_supported_boards_wiki();