[NFC][libc] Remove double semicolon
authorGuillaume Chatelet <gchatelet@google.com>
Thu, 25 Aug 2022 08:17:12 +0000 (10:17 +0200)
committerGitHub <noreply@github.com>
Thu, 25 Aug 2022 08:17:12 +0000 (10:17 +0200)
libc/src/stdio/printf_core/parser.h

index 3d47f6a..01db9da 100644 (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.