Fix comment about midi port hold flag.

This commit is contained in:
Alexandre Ratchov 2019-08-27 14:10:28 +02:00
parent 7933511f57
commit db1e20ae8f
1 changed files with 2 additions and 2 deletions

View File

@ -88,8 +88,8 @@ struct port {
#define PORT_DRAIN 2 #define PORT_DRAIN 2
unsigned int state; unsigned int state;
unsigned int num; /* port serial number */ unsigned int num; /* port serial number */
char *path; /* hold the port open ? */ char *path;
int hold; int hold; /* hold the port open ? */
struct midi *midi; struct midi *midi;
}; };