From 5316b438d56e9c75d4735b261e8c404712f0dd92 Mon Sep 17 00:00:00 2001 From: Stephen Heumann Date: Sat, 22 Jul 2023 18:03:01 -0500 Subject: [PATCH] Remove a debug print statement in a test. --- Tests/Conformance/C17.8.0.15.CC | 1 - 1 file changed, 1 deletion(-) diff --git a/Tests/Conformance/C17.8.0.15.CC b/Tests/Conformance/C17.8.0.15.CC index 6a7c879..1151450 100644 --- a/Tests/Conformance/C17.8.0.15.CC +++ b/Tests/Conformance/C17.8.0.15.CC @@ -15,7 +15,6 @@ int main (void) d1 = d2 = d3 = 1.0; i = sscanf (&sstr[0], "%*07f %e %E %lg %30lG %17lf%e", &f2, &f3, &d1, &d2, &d3, &f4); -printf("%d\n", i); if (i != 6) goto Fail; if ((fabs(f1 - 1.0) > 0.00001) ||