From b1dc9c3a2f7e55c9afc5bf2d5b465371b048e14f Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 10 Aug 2016 16:38:33 +0100 Subject: Remove all use of stringstream in an attempt to fix the suspected thread-unsafe crash bugs on OS X. --- src/lib/exceptions.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/exceptions.cc') diff --git a/src/lib/exceptions.cc b/src/lib/exceptions.cc index b8144d2ed..f07354ca1 100644 --- a/src/lib/exceptions.cc +++ b/src/lib/exceptions.cc @@ -59,7 +59,7 @@ MissingSettingError::MissingSettingError (string s) } PixelFormatError::PixelFormatError (string o, AVPixelFormat f) - : runtime_error (String::compose (_("Cannot handle pixel format %1 during %2"), f, o)) + : runtime_error (String::compose (_("Cannot handle pixel format %1 during %2"), (int) f, o)) { } -- cgit v1.2.3