From df2be4e048870ac6c570294952dfbb6a7b03736d Mon Sep 17 00:00:00 2001 From: Phil Burk Date: Sat, 17 Apr 2021 12:56:16 -0700 Subject: [PATCH] patest_unplug.c: change int32_t to int (#553) To prevent compiler errors and to avoid controversy over stdint.h vs inttypes.h. Fixes #550 --- test/patest_unplug.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/patest_unplug.c b/test/patest_unplug.c index 0e4486e..f854639 100644 --- a/test/patest_unplug.c +++ b/test/patest_unplug.c @@ -59,9 +59,9 @@ typedef struct { short sine[TABLE_SIZE]; - int32_t phases[MAX_CHANNELS]; - int32_t numChannels; - int32_t sampsToGo; + int phases[MAX_CHANNELS]; + int numChannels; + int sampsToGo; } paTestData; -- 2.43.0