From 0ac2dc28104253faf82a3ed3d12bb16a1a150067 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Tue, 10 Nov 2009 18:43:53 -0500 Subject: Fixed an erroneous use of operator>> in textual.cc --- src/textual.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/textual.cc b/src/textual.cc index 1d0d7998..bd7333d2 100644 --- a/src/textual.cc +++ b/src/textual.cc @@ -628,7 +628,7 @@ void instance_t::include_directive(char * line) if (! exists(filename)) throw_(std::runtime_error, - _("File to include was not found: '%1'" << filename)); + _("File to include was not found: '%1'") << filename); ifstream stream(filename); -- cgit v1.2.3