summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Shawcroft <scott@tannewt.org>2018-12-07 09:56:35 -0800
committerScott Shawcroft <scott@tannewt.org>2018-12-07 09:56:35 -0800
commit89ef6eef575501e736ae528f13d9979e1302be63 (patch)
treee6d975731209829b6cfe94b34cbcb0a0e9f79df5
parentdf84da59131be6a56a2990975ce05f8e10f0d9c1 (diff)
Fix unused parameter
-rw-r--r--supervisor/stub/serial.c1
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;
}