summaryrefslogtreecommitdiff
path: root/src/number.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/number.c')
-rw-r--r--src/number.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/number.c b/src/number.c
index 0e33e21..8676d9d 100644
--- a/src/number.c
+++ b/src/number.c
@@ -69,8 +69,8 @@ find_empty_cell ()
return num_taken-1;
}
-static int
-add_to_list (int n)
+int
+add_window_number (int n)
{
if (number_is_taken (n)) return 0; /* failed. */
@@ -88,7 +88,7 @@ get_unique_window_number ()
/* look for a unique number, and add it to the list of taken
numbers. */
i = 0;
- while (!add_to_list (i)) i++;
+ while (!add_window_number (i)) i++;
return i;
}