Fix warning on ; outside of function

Fix "warning ISO C does not allow extra ‘;’ outside of a function" when using gcc v8.5. 
Signed-off-by: Carlos Bilbao <carlos.bilbao@amd.com>
This commit is contained in:
Carlos Bilbao 2022-04-04 10:25:58 -05:00 committed by GitHub
parent 3f9fc2a3a7
commit c0d902c6c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -112,4 +112,4 @@ uint32_t crc32b(uint32_t crc, const void *data, size_t len)
}
return hashval;
};
}