summaryrefslogtreecommitdiff
path: root/unity-shared
diff options
authorBrandon Schaefer <brandontschaefer@gmail.com>2014-01-31 13:20:30 -0800
committerBrandon Schaefer <brandontschaefer@gmail.com>2014-01-31 13:20:30 -0800
commit5966842e3b21dfb1d2fbf432d25b37e369668fab (patch)
tree074a1aa1382457d3e01ce5d78cff961156fca074 /unity-shared
parent45cbfa8d998cfc82d3a80f8e3d41fdce4fdeb6eb (diff)
* Reword error message
(bzr r3635.2.5)
Diffstat (limited to 'unity-shared')
-rw-r--r--unity-shared/UnitySettings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unity-shared/UnitySettings.cpp b/unity-shared/UnitySettings.cpp
index c4a0dcd3b..aa0d64b24 100644
--- a/unity-shared/UnitySettings.cpp
+++ b/unity-shared/UnitySettings.cpp
@@ -219,7 +219,7 @@ EMConverter const& Settings::em(int monitor) const
{
if (monitor < 0 || monitor >= (int)monitors::MAX)
{
- LOG_ERROR(logger) << "Invalid monitor index: " << monitor << ". Returning primary monitor instead.";
+ LOG_ERROR(logger) << "Invalid monitor index: " << monitor << ". Returning index 0 monitor instead.";
return pimpl->em_converters_[0];
}