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:
parent
67caa13f19
commit
df2be4e048
1 changed files with 3 additions and 3 deletions
|
|
@ -59,9 +59,9 @@
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
short sine[TABLE_SIZE];
|
short sine[TABLE_SIZE];
|
||||||
int32_t phases[MAX_CHANNELS];
|
int phases[MAX_CHANNELS];
|
||||||
int32_t numChannels;
|
int numChannels;
|
||||||
int32_t sampsToGo;
|
int sampsToGo;
|
||||||
}
|
}
|
||||||
paTestData;
|
paTestData;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue