1
0
Fork 0

Fixes invalid call to fprintf

This commit is contained in:
Shawn Nock 2019-05-08 11:05:41 +00:00
parent c86c0d2777
commit 29b066ee7d
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ int main(int argc, char **argv) {
}
if (cfsetspeed(&t_options, speed_from_string(speed)) < 0) {
fprintf(stderr, "Failed to set port speed.\n", speed);
fprintf(stderr, "Failed to set port speed.\n");
return 2;
}