diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2018-12-07 09:56:35 -0800 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2018-12-07 09:56:35 -0800 |
| commit | 89ef6eef575501e736ae528f13d9979e1302be63 (patch) | |
| tree | e6d975731209829b6cfe94b34cbcb0a0e9f79df5 | |
| parent | df84da59131be6a56a2990975ce05f8e10f0d9c1 (diff) | |
Fix unused parameter
| -rw-r--r-- | supervisor/stub/serial.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/supervisor/stub/serial.c b/supervisor/stub/serial.c index 4f0e11873..956551914 100644 --- a/supervisor/stub/serial.c +++ b/supervisor/stub/serial.c @@ -43,4 +43,5 @@ bool serial_bytes_available(void) { } void serial_write(const char* text) { + (void) text; } |
