diff options
| author | Kristian Høgsberg <krh@bitplanet.net> | 2012-03-02 23:42:07 -0500 |
|---|---|---|
| committer | Kristian Høgsberg <krh@bitplanet.net> | 2012-03-02 23:42:07 -0500 |
| commit | d2067508c148ba138c352779f6bd51526eaef91f (patch) | |
| tree | e9d3eda65a92291b537f845b3e45dda784c3ab17 /tests/test-runner.c | |
| parent | connection: Export wl_connection_queue() so we can test it (diff) | |
| download | wayland-d2067508c148ba138c352779f6bd51526eaef91f.tar wayland-d2067508c148ba138c352779f6bd51526eaef91f.tar.gz wayland-d2067508c148ba138c352779f6bd51526eaef91f.tar.bz2 wayland-d2067508c148ba138c352779f6bd51526eaef91f.tar.lz wayland-d2067508c148ba138c352779f6bd51526eaef91f.tar.xz wayland-d2067508c148ba138c352779f6bd51526eaef91f.tar.zst wayland-d2067508c148ba138c352779f6bd51526eaef91f.zip | |
test-runner: Fix warnings
Diffstat (limited to 'tests/test-runner.c')
| -rw-r--r-- | tests/test-runner.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test-runner.c b/tests/test-runner.c index a47ea70..e9c560a 100644 --- a/tests/test-runner.c +++ b/tests/test-runner.c @@ -25,6 +25,7 @@ #include <stdlib.h> #include <sys/types.h> #include <sys/wait.h> +#include <string.h> #include <assert.h> #include "test-runner.h" @@ -51,7 +52,7 @@ int main(int argc, char *argv[]) { const struct test *t; pid_t pid; - int i, total, pass; + int total, pass; siginfo_t info; if (argc == 2) |
