Get rid of some extra semicolons.
parent
6aff01fdd1
commit
182754c549
|
@ -168,7 +168,7 @@ static int parse1284_data(const char *device_id, struct deviceid_dict* dict)
|
|||
break;
|
||||
}
|
||||
return num;
|
||||
};
|
||||
}
|
||||
|
||||
static char *dict_find(const char *key, int dlen, struct deviceid_dict* dict)
|
||||
{
|
||||
|
|
|
@ -181,7 +181,7 @@ struct mitsu70x_jobstatus {
|
|||
struct mitsu70x_job {
|
||||
uint16_t id; /* BE */
|
||||
uint8_t status[4];
|
||||
} __attribute__((packed));;
|
||||
} __attribute__((packed));
|
||||
|
||||
#define NUM_JOBS 170
|
||||
|
||||
|
|
|
@ -163,7 +163,7 @@ static char *cmd_names(uint16_t v) {
|
|||
default:
|
||||
return "Unknown Command";
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
struct s2145_print_cmd {
|
||||
struct s2145_cmd_hdr hdr;
|
||||
|
|
|
@ -365,7 +365,7 @@ static char *cmd_names(uint16_t v) {
|
|||
default:
|
||||
return "Unknown Command";
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
struct s6145_print_cmd {
|
||||
struct s6145_cmd_hdr hdr;
|
||||
|
|
|
@ -178,7 +178,7 @@ static char *cmd_names(uint16_t v) {
|
|||
default:
|
||||
return "Unknown Command";
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
struct s6245_print_cmd {
|
||||
struct s6245_cmd_hdr hdr;
|
||||
|
|
Loading…
Reference in New Issue