summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2014-05-25 12:18:14 +0200
committerMatthias Clasen <mclasen@redhat.com>2014-06-28 13:07:52 -0400
commitdce88768dc9bedaa46eb310a1f64562ea1247b68 (patch)
tree34064660b955fc52268242a5f9083e3020c5759c /tests
parentd217429729aad360f372633f2ec99778c0fc08d5 (diff)
all: remove use of 'register' keyword
We should have done this a decade ago... https://bugzilla.gnome.org/show_bug.cgi?id=730293
Diffstat (limited to 'tests')
-rw-r--r--tests/bit-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bit-test.c b/tests/bit-test.c
index 230c85246..173a09b25 100644
--- a/tests/bit-test.c
+++ b/tests/bit-test.c
@@ -81,7 +81,7 @@ naive_bit_nth_msf (gulong mask, gint nth_bit)
static guint
naive_bit_storage (gulong number)
{
- register guint n_bits = 0;
+ guint n_bits = 0;
do
{