aboutsummaryrefslogtreecommitdiff
path: root/tests/05read.c
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2023-08-01 03:05:55 +0200
committerPřemysl Eric Janouch <p@janouch.name>2023-08-01 03:06:39 +0200
commit8844026f26161a74a16b0c9fbdae8421bfec79ab (patch)
tree3ee34f7f706824da4e6f8008134baad892b9cccf /tests/05read.c
parentc64457d4cd96c8a89df68655c83b81872963c10a (diff)
downloadtermo-8844026f26161a74a16b0c9fbdae8421bfec79ab.tar.gz
termo-8844026f26161a74a16b0c9fbdae8421bfec79ab.tar.xz
termo-8844026f26161a74a16b0c9fbdae8421bfec79ab.zip
Silence compiler warnings in test targets
-Wunused-parameter
Diffstat (limited to 'tests/05read.c')
-rw-r--r--tests/05read.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/05read.c b/tests/05read.c
index 226acca..c8475c7 100644
--- a/tests/05read.c
+++ b/tests/05read.c
@@ -9,6 +9,9 @@
int
main (int argc, char *argv[])
{
+ (void) argc;
+ (void) argv;
+
int fd[2];
termo_t *tk;
termo_key_t key;