summaryrefslogtreecommitdiff
path: root/md5_utils.c
diff options
context:
space:
mode:
authorJohann <johann.koenig@duck.com>2018-10-26 14:55:26 -0700
committerJohann <johann.koenig@duck.com>2018-10-26 14:55:26 -0700
commit17004c71bcd7ae7e6a65bd5b8e756fb2311accdc (patch)
treef9db2286820bacaed2039416279dcbffcf75592e /md5_utils.c
parenta4e70f1808df9ef309be62bb0c93e6ed7a9bc135 (diff)
downloadlibvpx-17004c71bcd7ae7e6a65bd5b8e756fb2311accdc.tar
libvpx-17004c71bcd7ae7e6a65bd5b8e756fb2311accdc.tar.gz
libvpx-17004c71bcd7ae7e6a65bd5b8e756fb2311accdc.tar.bz2
libvpx-17004c71bcd7ae7e6a65bd5b8e756fb2311accdc.zip
remove "register" keyword
This has been deprecated for a long time. c++17 is trying to recover the name. Change-Id: Iade6bebce03a50b76061695f9e634a107cd989cd
Diffstat (limited to 'md5_utils.c')
-rw-r--r--md5_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/md5_utils.c b/md5_utils.c
index 093798b83..9ddb104c8 100644
--- a/md5_utils.c
+++ b/md5_utils.c
@@ -163,7 +163,7 @@ void MD5Final(md5byte digest[16], struct MD5Context *ctx) {
*/
VPX_NO_UNSIGNED_OVERFLOW_CHECK void MD5Transform(UWORD32 buf[4],
UWORD32 const in[16]) {
- register UWORD32 a, b, c, d;
+ UWORD32 a, b, c, d;
a = buf[0];
b = buf[1];