diff options
author | Jacek Antonelli | 2008-12-10 22:28:49 -0600 |
---|---|---|
committer | Jacek Antonelli | 2008-12-10 22:28:49 -0600 |
commit | a18b29075eabef8fb4caa02ba929407091ae4e35 (patch) | |
tree | 7a492ac49625af97f943466e2bde5d8031792556 /linden | |
parent | Fixed bad string comparison (grid code name). [#22] (diff) | |
download | meta-impy-a18b29075eabef8fb4caa02ba929407091ae4e35.zip meta-impy-a18b29075eabef8fb4caa02ba929407091ae4e35.tar.gz meta-impy-a18b29075eabef8fb4caa02ba929407091ae4e35.tar.bz2 meta-impy-a18b29075eabef8fb4caa02ba929407091ae4e35.tar.xz |
Better warning when url_history.xml save fails.
Diffstat (limited to 'linden')
-rw-r--r-- | linden/indra/newview/llurlhistory.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/linden/indra/newview/llurlhistory.cpp b/linden/indra/newview/llurlhistory.cpp index 0dadbd0..c10add4 100644 --- a/linden/indra/newview/llurlhistory.cpp +++ b/linden/indra/newview/llurlhistory.cpp | |||
@@ -76,7 +76,8 @@ bool LLURLHistory::saveFile(const std::string& filename) | |||
76 | std::string temp_str = gDirUtilp->getLindenUserDir(); | 76 | std::string temp_str = gDirUtilp->getLindenUserDir(); |
77 | if( temp_str.empty() ) | 77 | if( temp_str.empty() ) |
78 | { | 78 | { |
79 | llwarns << "Can't save. No user directory set." << llendl; | 79 | llwarns << "Can't save " << filename |
80 | << ": No user directory set." << llendl; | ||
80 | return false; | 81 | return false; |
81 | } | 82 | } |
82 | 83 | ||