use static functions where possible for some local functions.

This commit is contained in:
2009-09-14 16:52:06 +00:00
parent 131c713fc1
commit ba5df38d66
55 changed files with 178 additions and 178 deletions

View File

@@ -316,7 +316,7 @@ typedef struct WorkParam {
int index;
} WorkParam;
void *exec_work_fnct(void *v_param)
static void *exec_work_fnct(void *v_param)
{
WorkParam *p = (WorkParam*)v_param;
void *value;