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 ret;
|
||||||
int opt;
|
int opt;
|
||||||
bool terminal = FALSE;
|
bool terminal = false;
|
||||||
const char *cid = NULL;
|
const char *cid = NULL;
|
||||||
const char *runtime_path = NULL;
|
const char *runtime_path = NULL;
|
||||||
char cmd[CMD_SIZE];
|
char cmd[CMD_SIZE];
|
||||||
|
@ -88,7 +88,7 @@ int main(int argc, char *argv[])
|
||||||
while ((opt = getopt(argc, argv, "tc:r:")) != -1) {
|
while ((opt = getopt(argc, argv, "tc:r:")) != -1) {
|
||||||
switch (opt) {
|
switch (opt) {
|
||||||
case 't':
|
case 't':
|
||||||
terminal = TRUE;
|
terminal = true;
|
||||||
break;
|
break;
|
||||||
case 'c':
|
case 'c':
|
||||||
cid = optarg;
|
cid = optarg;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue