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
This commit is contained in:
Phil Burk 2021-04-17 12:56:16 -07:00 committed by GitHub
commit df2be4e048
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;