diff options
author | Harald Welte <laforge@gnumonks.org> | 2010-03-26 21:05:43 +0800 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2010-03-26 21:26:01 +0800 |
commit | faadfe2b93db0976952b13a7870074ac8979bcd9 (patch) | |
tree | 047dd39a3e755e4f992ee8a56278f270ffae6b24 /include | |
parent | d788f6688c5ef80a115fd13be4cf40ee16a85389 (diff) |
debug: remove unneeded 'number' member of 'struct debug_info_cat'
As the debug subsystem number is used as index into the debug_info_cat
array, there is no need to store the number explicitly inside the
structure again.
Diffstat (limited to 'include')
-rw-r--r-- | include/osmocore/debug.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/osmocore/debug.h b/include/osmocore/debug.h index a1658314..0caec283 100644 --- a/include/osmocore/debug.h +++ b/include/osmocore/debug.h @@ -48,7 +48,6 @@ struct debug_info_cat { const char *name; const char *color; const char *description; - int number; uint8_t loglevel; uint8_t enabled; }; |