summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-12 18:15:36 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-12 18:15:36 -0600
commit0a2ae6ad0e85b4e4ac4660804924cdf64e0df798 (patch)
tree836764bfa1b3d3b1f2d7057133e0f8b5ad292e0e
parente90b15c55dd5cfa5b40e078722c8145264ee7237 (diff)
downloadqt3-0a2ae6ad0e85b4e4ac4660804924cdf64e0df798.tar.gz
qt3-0a2ae6ad0e85b4e4ac4660804924cdf64e0df798.zip
Fix FTBFS if yacc regenerates the moc
-rw-r--r--src/moc/moc.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/moc/moc.y b/src/moc/moc.y
index a88fcb6..2914150 100644
--- a/src/moc/moc.y
+++ b/src/moc/moc.y
@@ -2833,7 +2833,7 @@ void generateClass() // generate C++ source code for a class
{
const char *hdr1 = "/****************************************************************************\n"
"** %s meta object code from reading C++ file '%s'\n**\n";
- const char *hdr2 = "** Created: %s\n"
+ const char *hdr2 = "** Created: %s\n";
const char *hdr3 = "** WARNING! All changes made in this file will be lost!\n";
const char *hdr4 = "*****************************************************************************/\n\n";
int i;