aboutsummaryrefslogtreecommitdiff
path: root/src/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cc')
-rw-r--r--src/main.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cc b/src/main.cc
index d3a0cbd..3925b04 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -541,8 +541,8 @@ int main(int argc, char **argv){
// once we identify all throw statements and how to roughly handle them.
try{
LaunchGame();
- }catch(RESULT result){
- error("main: Nicht abgefangene Exception %d.\n", result);
+ }catch(RESULT r){
+ error("main: Nicht abgefangene Exception %d.\n", r);
}catch(const char *str){
error("main: Nicht abgefangene Exception \"%s\".\n", str);
}catch(const std::exception &e){