From: mfranz Date: Thu, 10 Aug 2006 11:12:39 +0000 (+0000) Subject: fix log message X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6a6eb2c00bbe7b062073174f7fe49c0978ddcbde;p=flightgear.git fix log message --- diff --git a/src/Cockpit/panel_io.cxx b/src/Cockpit/panel_io.cxx index 16e148ba5..64c94f496 100644 --- a/src/Cockpit/panel_io.cxx +++ b/src/Cockpit/panel_io.cxx @@ -287,7 +287,7 @@ readTransformation (const SGPropertyNode * node, float w_scale, float h_scale) const SGPropertyNode * trans_table = node->getNode("interpolation"); if (trans_table != 0) { SG_LOG( SG_COCKPIT, SG_INFO, "Found interpolation table with " - << trans_table->nChildren() << "children" ); + << trans_table->nChildren() << " children" ); t->table = new SGInterpTable(); for (int i = 0; i < trans_table->nChildren(); i++) { const SGPropertyNode * node = trans_table->getChild(i);