conmon: booleans already from stdbool.h
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
parent
0ebf110b95
commit
430e1d298b
1 changed files with 2 additions and 2 deletions
|
@ -64,7 +64,7 @@ int main(int argc, char *argv[])
|
|||
{
|
||||
int ret;
|
||||
int opt;
|
||||
bool terminal = FALSE;
|
||||
bool terminal = false;
|
||||
const char *cid = NULL;
|
||||
const char *runtime_path = NULL;
|
||||
char cmd[CMD_SIZE];
|
||||
|
@ -88,7 +88,7 @@ int main(int argc, char *argv[])
|
|||
while ((opt = getopt(argc, argv, "tc:r:")) != -1) {
|
||||
switch (opt) {
|
||||
case 't':
|
||||
terminal = TRUE;
|
||||
terminal = true;
|
||||
break;
|
||||
case 'c':
|
||||
cid = optarg;
|
||||
|
|
Loading…
Reference in a new issue