OSDN Git Service

contrib/plugins/drcov: Fix string format
authorPhilippe Mathieu-Daudé <philmd@linaro.org>
Thu, 7 Sep 2023 10:50:01 +0000 (12:50 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Thu, 7 Sep 2023 10:54:17 +0000 (12:54 +0200)
commit3df17650730fcc84a551baf34133e22e96101c84
treec421c317b97425793c995da55ee9a0c1d1e12559
parent86e49b2ed889616a1fd3685f19f8c82ed5597245
contrib/plugins/drcov: Fix string format

This fixes on Darwin:

  plugins/drcov.c:52:13: warning: format specifies type 'unsigned long' but the argument has type 'uint64_t' (aka 'unsigned long long') [-Wformat]
              start_code, end_code, entry, path);
              ^~~~~~~~~~
  plugins/drcov.c:52:25: warning: format specifies type 'unsigned long' but the argument has type 'uint64_t' (aka 'unsigned long long') [-Wformat]
              start_code, end_code, entry, path);
                          ^~~~~~~~
  plugins/drcov.c:52:35: warning: format specifies type 'unsigned long' but the argument has type 'uint64_t' (aka 'unsigned long long') [-Wformat]
              start_code, end_code, entry, path);
                                    ^~~~~

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20230907105004.88600-3-philmd@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
contrib/plugins/drcov.c