Change inputArgs to InputArgs
parent
9dc2da1f90
commit
c7797f1f41
|
@ -7,7 +7,7 @@ typedef struct input_args_t
|
||||||
{
|
{
|
||||||
char *out;
|
char *out;
|
||||||
bool *alive;
|
bool *alive;
|
||||||
} inputArgs;
|
} InputArgs;
|
||||||
|
|
||||||
void input(void *vargp);
|
void input(void *vargp);
|
||||||
|
|
||||||
|
|
|
@ -23,8 +23,8 @@ char getch(void)
|
||||||
|
|
||||||
void input(void *vargp)
|
void input(void *vargp)
|
||||||
{
|
{
|
||||||
char *out = ((inputArgs *)vargp)->out;
|
char *out = ((InputArgs *)vargp)->out;
|
||||||
bool *alive = ((inputArgs *)vargp)->alive;
|
bool *alive = ((InputArgs *)vargp)->alive;
|
||||||
|
|
||||||
while (*alive)
|
while (*alive)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue