Module Name: src
Committed By: martin
Date: Wed Feb 12 07:02:21 UTC 2020
Modified Files:
src/tests/dev/audio: audiotest.c
Log Message:
Add sentinel to the testtable[] array.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/dev/audio/audiotest.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tests/dev/audio/audiotest.c
diff -u src/tests/dev/audio/audiotest.c:1.1 src/tests/dev/audio/audiotest.c:1.2
--- src/tests/dev/audio/audiotest.c:1.1 Tue Feb 11 07:03:16 2020
+++ src/tests/dev/audio/audiotest.c Wed Feb 12 07:02:21 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: audiotest.c,v 1.1 2020/02/11 07:03:16 isaki Exp $ */
+/* $NetBSD: audiotest.c,v 1.2 2020/02/12 07:02:21 martin Exp $ */
/*
* Copyright (C) 2019 Tetsuya Isaki. All rights reserved.
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: audiotest.c,v 1.1 2020/02/11 07:03:16 isaki Exp $");
+__RCSID("$NetBSD: audiotest.c,v 1.2 2020/02/12 07:02:21 martin Exp $");
#include <errno.h>
#include <fcntl.h>
@@ -6431,4 +6431,5 @@ struct testentry testtable[] = {
ENT(audioctl_rw_RDWR),
ENT(audioctl_poll),
ENT(audioctl_kqueue),
+ {.name = NULL},
};