[NFC][libc] Remove double semicolon

This commit is contained in:
Guillaume Chatelet 2022-08-25 10:17:12 +02:00 committed by GitHub
parent ab9ee471df
commit 5a5f02f0e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ class Parser {
// TypeDesc objects, which store the size as well as minimal type information.
// This is necessary because some systems separate the floating point and
// integer values in va_args.
TypeDesc desc_arr[DESC_ARR_LEN] = {{0, Integer}};;
TypeDesc desc_arr[DESC_ARR_LEN] = {{0, Integer}};
// TODO: Look into object stores for optimization.