fix for warnings from Sparse static source code checker, mostly BKE/BLI and python functions.
- use NULL rather then 0 where possible (makes code & function calls more readable IMHO). - set static variables and functions (exposed some unused vars/funcs). - use func(void) rather then func() for definitions.
This commit is contained in:
@@ -85,7 +85,7 @@ struct bContext {
|
||||
|
||||
/* context */
|
||||
|
||||
bContext *CTX_create()
|
||||
bContext *CTX_create(void)
|
||||
{
|
||||
bContext *C;
|
||||
|
||||
@@ -788,7 +788,7 @@ static const char *data_mode_strings[] = {
|
||||
"texturepaint",
|
||||
"particlemode",
|
||||
"objectmode",
|
||||
0
|
||||
NULL
|
||||
};
|
||||
const char *CTX_data_mode_string(const bContext *C)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user