summaryrefslogtreecommitdiffstats
path: root/paste.c
diff options
context:
space:
mode:
authornicm <nicm>2016-10-11 13:45:47 +0000
committernicm <nicm>2016-10-11 13:45:47 +0000
commit5c49e1d0c1afaf98512b2ffd1f31d91fecff9851 (patch)
tree7c700a3608d6de77abcdd13af8098aa47cf657ec /paste.c
parente45401846f0a423bb90ebd3943041a28b2657631 (diff)
Some other stuff that can be local to one file.
Diffstat (limited to 'paste.c')
-rw-r--r--paste.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/paste.c b/paste.c
index d4d5c59f..672927f4 100644
--- a/paste.c
+++ b/paste.c
@@ -46,8 +46,8 @@ struct paste_buffer {
static u_int paste_next_index;
static u_int paste_next_order;
static u_int paste_num_automatic;
-RB_HEAD(paste_name_tree, paste_buffer) paste_by_name;
-RB_HEAD(paste_time_tree, paste_buffer) paste_by_time;
+static RB_HEAD(paste_name_tree, paste_buffer) paste_by_name;
+static RB_HEAD(paste_time_tree, paste_buffer) paste_by_time;
static int paste_cmp_names(const struct paste_buffer *,
const struct paste_buffer *);