Fixes https://github.com/llvm/llvm-project/issues/53441.
Expected code:
/**/ // int a; //
was before misformatted to:
/**/ // int a; //
Because the "remaining length" (after the starting /*) of an empty block comment /**/ was computed to be 0 instead of 2.