diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llcommon/llerrorcontrol.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/llcommon/llerrorcontrol.h b/linden/indra/llcommon/llerrorcontrol.h index 2c36871..9888444 100644 --- a/linden/indra/llcommon/llerrorcontrol.h +++ b/linden/indra/llcommon/llerrorcontrol.h | |||
@@ -5,7 +5,7 @@ | |||
5 | * | 5 | * |
6 | * $LicenseInfo:firstyear=2007&license=viewergpl$ | 6 | * $LicenseInfo:firstyear=2007&license=viewergpl$ |
7 | * | 7 | * |
8 | * Copyright (c) 2007-2008, Linden Research, Inc. | 8 | * Copyright (c) 2007-2009, Linden Research, Inc. |
9 | * | 9 | * |
10 | * Second Life Viewer Source Code | 10 | * Second Life Viewer Source Code |
11 | * The source code in this file ("Source Code") is provided by Linden Lab | 11 | * The source code in this file ("Source Code") is provided by Linden Lab |
@@ -82,9 +82,9 @@ namespace LLError | |||
82 | Control functions. | 82 | Control functions. |
83 | */ | 83 | */ |
84 | 84 | ||
85 | typedef void (*FatalFunction)(const std::string& message); | 85 | typedef void(*FatalFunction)(const std::string& message); |
86 | void crashAndLoop(const std::string& message); | 86 | void crashAndLoop(const std::string& message); |
87 | // Default fatal funtion: divides by zero and loops forever | 87 | // Default fatal funtion: access null pointer and loops forever |
88 | 88 | ||
89 | void setFatalFunction(FatalFunction); | 89 | void setFatalFunction(FatalFunction); |
90 | // The fatal function will be called when an message of LEVEL_ERROR | 90 | // The fatal function will be called when an message of LEVEL_ERROR |