On 11/11/25 22:57, Nicholas Mosier wrote:
A comma operator inappropriately terminates an expression
in svm_helper.c. Replace it with a semicolon.
Signed-off-by: Nicholas Mosier <[email protected]>
---
As an apparent typo, line 742 in target/i386/tcg/system/svm_helper.c
ends with a comma operator, rather than a statement-ending semicolon.
This doesn't introduce any functionality bugs as the code is currently
written, but could easily introduce bugs in the future if a new line
of code is added following the comma operator.
This patch replaces the comma with a semicolon, as the original author
probably intended.
---
target/i386/tcg/system/svm_helper.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>