summaryrefslogtreecommitdiff
path: root/zen/shutdown.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zen/shutdown.cpp')
-rw-r--r--zen/shutdown.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/shutdown.cpp b/zen/shutdown.cpp
index e64e1e70..ee68b467 100644
--- a/zen/shutdown.cpp
+++ b/zen/shutdown.cpp
@@ -55,7 +55,7 @@ void zen::terminateProcess(int exitCode)
for (;;) //why still here?? => crash deliberately!
- *reinterpret_cast<volatile int*>(0) = 0; //crude but at least we'll get crash dumps if it ever happens
+ *reinterpret_cast<volatile int*>(0) = 0; //crude but at least we'll get crash dumps *if* it ever happens
}
bgstack15