Skip to content
Snippets Groups Projects
Commit 2647f731 authored by Armin Luntzer's avatar Armin Luntzer
Browse files

PROC NET: remove static declaration

parent f44e3a3c
No related branches found
No related tags found
No related merge requests found
......@@ -445,15 +445,14 @@ int pn_process_inputs(struct proc_net *pn)
unsigned long op;
struct proc_task *t;
static struct proc_tracker *pt;
struct proc_tracker *pt;
if (list_empty(&pn->nodes))
return -1;
if (!pt)
pt = list_entry(pn->nodes.next, struct proc_tracker, node);
pt = list_first_entry(&pn->nodes, struct proc_tracker, node);
while (1) {
t = pt_track_get(pn->in);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment