From df554d47e3872c5e03337bb4803885f5e8505fa7 Mon Sep 17 00:00:00 2001 From: pieter Date: Thu, 4 Jul 2002 05:05:34 +0000 Subject: [PATCH] Changed some C++ comments (//) to C comments (/**/). --- pa_tests/patest_latency.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pa_tests/patest_latency.c b/pa_tests/patest_latency.c index 66820bc..30c8160 100644 --- a/pa_tests/patest_latency.c +++ b/pa_tests/patest_latency.c @@ -56,7 +56,7 @@ #define TABLE_SIZE (400) typedef struct { - float sine[TABLE_SIZE + 1]; // add one for guard point for interpolation + float sine[TABLE_SIZE + 1]; /* add one for guard point for interpolation */ float phase_increment; float left_phase; float right_phase; @@ -117,7 +117,7 @@ int main(void) { data.sine[i] = 0.90f * (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. ); } - data.sine[TABLE_SIZE] = data.sine[0]; // set guard point + data.sine[TABLE_SIZE] = data.sine[0]; /* set guard point */ data.left_phase = data.right_phase = 0.0; data.phase_increment = CalcPhaseIncrement(MIN_FREQ); -- 2.43.0