1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2024-06-16 11:29:28 +00:00

Make this compile.

This commit is contained in:
Radosław Kujawa 2017-02-25 12:56:17 +01:00
parent edab91de3f
commit 10b9778383

View File

@ -104,6 +104,10 @@ device_serial_init()
void
device_serial_finish(device_t *d)
{
struct device_serial_priv *dp;
dp = d->aux;
close(dp->txpipefd);
close(dp->rxpipefd);