Make some variables static.
[paraslash.git] / grab_client.c
index de6df6dfddae9d9f24e33323fadc762fd326acb0..a85e42a967817d6d767a6f9bf52b95c6146d5369 100644 (file)
@@ -62,9 +62,9 @@ struct grab_client {
 };
 
 /* Grab clients that are attached to a btr node. */
-INITIALIZED_LIST_HEAD(active_grab_client_list);
+static INITIALIZED_LIST_HEAD(active_grab_client_list);
 /* Grab clients that are not currently attached any btr node. */
-INITIALIZED_LIST_HEAD(inactive_grab_client_list);
+static INITIALIZED_LIST_HEAD(inactive_grab_client_list);
 
 static int gc_write(struct grab_client *gc, char *buf, size_t len)
 {