1
0
mirror of https://github.com/ericonr/sndio.git synced 2024-02-18 04:45:21 -06:00

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

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;
}; };