conmon: booleans already from stdbool.h

Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
Antonio Murdaca 2016-09-23 08:49:05 +02:00
parent 0ebf110b95
commit 430e1d298b
No known key found for this signature in database
GPG key ID: B2BEAD150DE936B9

View file

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