summaryrefslogtreecommitdiff
path: root/debug.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-11-14 19:48:04 +0000
committertron <tron@openttd.org>2005-11-14 19:48:04 +0000
commitf7abff5f963cddfdd134ac52ffd8e72e3ed88f0c (patch)
treea9ba5d4f3c5c47ab3857060c5f95ed482530ed97 /debug.c
parentd8b56c123eab7f7b48f2af3579130e366f6106ab (diff)
downloadopenttd-f7abff5f963cddfdd134ac52ffd8e72e3ed88f0c.tar.xz
(svn r3181) -Bracing
-Indentation -Whitespace -DeMorgan's Law -Test with NULL or 0 for non-booleans -'\0' instead of 0 for chars -Remove redundantly redundant comments (like DoFoo(); // Do foo) -Join multiple short lines with a single statement -Split single lines with multiple statements -Avoid assignments in if
Diffstat (limited to 'debug.c')
-rw-r--r--debug.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/debug.c b/debug.c
index c97e5f0a3..16d3fda35 100644
--- a/debug.c
+++ b/debug.c
@@ -76,12 +76,11 @@ void SetDebugString(const char *s)
v = strtoul(s, &end, 0);
s = end;
- for (i = debug_level; i != endof(debug_level); ++i)
- *i->level = v;
+ for (i = debug_level; i != endof(debug_level); ++i) *i->level = v;
}
// individual levels
- for(;;) {
+ for (;;) {
const DebugLevel *i;
int *p;
@@ -103,9 +102,9 @@ void SetDebugString(const char *s)
if (*s == '=') s++;
v = strtoul(s, &end, 0);
s = end;
- if (p != NULL)
+ if (p != NULL) {
*p = v;
- else {
+ } else {
ShowInfoF("Unknown debug level '%.*s'", s - t, t);
return;
}