diff options
author | Jonathan Yap <none@none> | 2013-11-20 14:47:00 -0500 |
---|---|---|
committer | Jonathan Yap <none@none> | 2013-11-20 14:47:00 -0500 |
commit | aec2fde7a4c3114b9081fa3c90f891f8337595ad (patch) | |
tree | f0b804558fa9f5153b3fadee8b6eb5a9714668aa /indra/newview | |
parent | 176901422f0122dad8d1e4e423d0bc19e9e4ad8a (diff) |
STORM-68 Added default clause to switch statement to try to fix linux compile error.
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/llviewerinventory.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llviewerinventory.cpp b/indra/newview/llviewerinventory.cpp index 5e3df16c38..c52505e4b3 100755 --- a/indra/newview/llviewerinventory.cpp +++ b/indra/newview/llviewerinventory.cpp @@ -1328,6 +1328,8 @@ void create_new_item(const std::string& name, next_owner_perm = LLFloaterPerms::getNextOwnerPerms("Notecards"); break; } + default: + break; } create_inventory_item(gAgent.getID(), |