fix an incorrect type, (&char versus &bool)
This commit is contained in:
parent
8851f67efd
commit
a49d446826
|
|
@ -1,3 +1,7 @@
|
|||
2010-07-20 Robert Larice
|
||||
* src/main.c :
|
||||
fix an incorrect type, (&char versus &bool)
|
||||
|
||||
2010-07-20 Robert Larice
|
||||
* src/frontend/inp.c ,
|
||||
* src/frontend/misccoms.c ,
|
||||
|
|
|
|||
|
|
@ -691,7 +691,7 @@ main(int argc, char **argv)
|
|||
int err;
|
||||
bool gotone = FALSE;
|
||||
char* copystring;
|
||||
char addctrlsect = TRUE; /* PN: for autorun */
|
||||
bool addctrlsect = TRUE; /* PN: for autorun */
|
||||
|
||||
|
||||
#ifdef SIMULATOR
|
||||
|
|
|
|||
Loading…
Reference in New Issue