cansequence: convert extended, receive from int -> bool

pull/476/head
Marc Kleine-Budde 2023-11-29 17:35:51 +01:00
parent 5c433340c3
commit e8a808e2ab
1 changed files with 2 additions and 2 deletions

View File

@ -253,8 +253,8 @@ int main(int argc, char **argv)
.can_family = AF_CAN,
};
char *interface = "can0";
int extended = 0;
int receive = 0;
bool extended = false;
bool receive = false;
int opt;
sigaction(SIGINT, &act, NULL);