Browse Source

fix an incorrect type, (&char versus &bool)

pre-master-46
rlar 16 years ago
parent
commit
a49d446826
  1. 4
      ChangeLog
  2. 2
      src/main.c

4
ChangeLog

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

2
src/main.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…
Cancel
Save