1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2025-08-07 11:26:57 +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 void
device_serial_finish(device_t *d) device_serial_finish(device_t *d)
{ {
struct device_serial_priv *dp;
dp = d->aux;
close(dp->txpipefd); close(dp->txpipefd);
close(dp->rxpipefd); close(dp->rxpipefd);