diff options
Diffstat (limited to 'src/libbiguint/bu_copy.c')
-rw-r--r-- | src/libbiguint/bu_copy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libbiguint/bu_copy.c b/src/libbiguint/bu_copy.c index b975577..2822569 100644 --- a/src/libbiguint/bu_copy.c +++ b/src/libbiguint/bu_copy.c @@ -11,7 +11,7 @@ int bu_copy (uint32_t *b, unsigned int bn, uint32_t const *a, unsigned int an) { - register unsigned int alen = bu_len(a, an) ; + unsigned int alen = bu_len(a, an) ; if (bn < alen) { bu_copy_internal(b, a, bn) ; |