diff options
author | rbuj <[email protected]> | 2021-02-22 18:35:36 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-03-18 22:42:31 +0100 |
commit | 0dee04e5b88d941bb727ffdc80d50966ca48d9f6 (patch) | |
tree | 5912a6c60c4f5926e0f61876474f58b7d8a7fe73 /src | |
parent | 880f50be8abe386c27305351f1f47a0fc30780a3 (diff) | |
download | marco-0dee04e5b88d941bb727ffdc80d50966ca48d9f6.tar.bz2 marco-0dee04e5b88d941bb727ffdc80d50966ca48d9f6.tar.xz |
testasyncgetprop: Mismatching the argument type 'unsigned long'
and conversion specifier 'ld', reported by Apache NetBeans IDE
Diffstat (limited to 'src')
-rw-r--r-- | src/core/testasyncgetprop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/testasyncgetprop.c b/src/core/testasyncgetprop.c index f1d3a65c..2c1436fb 100644 --- a/src/core/testasyncgetprop.c +++ b/src/core/testasyncgetprop.c @@ -193,7 +193,7 @@ try_get_reply (Display *xdisplay, gettimeofday (¤t_time, NULL); - printf (" %gms (we have a reply for property %ld)\n", + printf (" %gms (we have a reply for property %lu)\n", ELAPSED (program_start_time, current_time), ag_task_get_property (task)); @@ -295,7 +295,7 @@ main (int argc, char **argv) while (i < n_props) { gettimeofday (¤t_time, NULL); - printf (" %gms (sending request for property %ld)\n", + printf (" %gms (sending request for property %lu)\n", ELAPSED (program_start_time, current_time), props[i]); if (ag_task_create (xdisplay, |