diff options
-rw-r--r-- | src/shred.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/shred.c b/src/shred.c index fc02f1340..507ba35bf 100644 --- a/src/shred.c +++ b/src/shred.c @@ -272,9 +272,9 @@ struct isaac_state static void isaac_refill (struct isaac_state *s, uint32_t r[/* ISAAC_WORDS */]) { - register uint32_t a, b; /* Caches of a and b */ - register uint32_t x, y; /* Temps needed by isaac_step macro */ - register uint32_t *m = s->mm; /* Pointer into state array */ + uint32_t a, b; /* Caches of a and b */ + uint32_t x, y; /* Temps needed by isaac_step macro */ + uint32_t *m = s->mm; /* Pointer into state array */ a = s->a; b = s->b + (++s->c); |