From: Dmitry V. Levin Date: Tue, 12 Jan 2016 04:27:22 +0000 (+0000) Subject: tests/times.c: fix clang compilation warning X-Git-Tag: v4.12~648 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b6edea5ce7282f624060e89de2647b28143d8b6b;p=strace tests/times.c: fix clang compilation warning * tests/times.c (main): Initialize dummy variable. --- diff --git a/tests/times.c b/tests/times.c index 93643d06..6c76dbc7 100644 --- a/tests/times.c +++ b/tests/times.c @@ -52,7 +52,7 @@ int main (void) { struct timespec ts; - volatile int dummy; + volatile int dummy = 0; int i; pid_t pid = fork();