summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-09-18 14:03:25 +0100
committerCarl Hetherington <cth@carlh.net>2015-09-18 14:03:25 +0100
commitb31bf6be17a014eaa9603af4563388070ce3ed73 (patch)
tree387d759c39f923c4daf7015430add1f4c68e0735 /src/lib
parentc1ad56f667d139f5d3279774cf996430ff05a75b (diff)
Make out-of-memory error message a bit more informative.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/job.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/job.cc b/src/lib/job.cc
index c4632a83c..c228defc5 100644
--- a/src/lib/job.cc
+++ b/src/lib/job.cc
@@ -133,7 +133,7 @@ Job::run_wrapper ()
} catch (std::bad_alloc& e) {
- set_error (_("Out of memory"), _("There was not enough memory to do this."));
+ set_error (_("Out of memory"), _("There was not enough memory to do this. If you are running a 32-bit operating system try reducing the number of encoding threads in the General tab of Preferences."));
set_progress (1);
set_state (FINISHED_ERROR);