diff options
author | Alberts Muktupāvels <alberts.muktupavels@gmail.com> | 2014-06-03 15:44:50 +0300 |
---|---|---|
committer | Alberts Muktupāvels <alberts.muktupavels@gmail.com> | 2014-06-03 15:44:50 +0300 |
commit | 2c92db038b65949a9c206e1b996606f3372feb1c (patch) | |
tree | 7726165a4a7aa43a5ed582164d7198a2bf3c1b0e /src/core | |
parent | b1ce2ee1348f653193c90c7260a63c509d829518 (diff) | |
download | metacity-2c92db038b65949a9c206e1b996606f3372feb1c.tar.gz |
testasyncgetprop.c: remove unused variable
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/testasyncgetprop.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/core/testasyncgetprop.c b/src/core/testasyncgetprop.c index 03182680..4f19f677 100644 --- a/src/core/testasyncgetprop.c +++ b/src/core/testasyncgetprop.c @@ -416,7 +416,6 @@ run_speed_comparison (Display *xdisplay, while ((task = ag_get_next_completed_task (xdisplay))) { - int result; Atom actual_type; int actual_format; unsigned long n_items; @@ -426,12 +425,12 @@ run_speed_comparison (Display *xdisplay, assert (ag_task_have_reply (task)); data = NULL; - result = ag_task_get_reply_and_free (task, - &actual_type, - &actual_format, - &n_items, - &bytes_after, - &data); + ag_task_get_reply_and_free (task, + &actual_type, + &actual_format, + &n_items, + &bytes_after, + &data); if (data) XFree (data); |