summaryrefslogtreecommitdiff
path: root/src/Event.c
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2019-05-16 17:09:13 -0400
committerThomas E. Dickey <dickey@invisible-island.net>2019-05-18 06:41:54 -0400
commitfb78a7c881adbe46f1f8c6e8e429bc8963c9b3e8 (patch)
tree65a352e0164384b4875869f5ed93eaa6c5d609ab /src/Event.c
parent7fa9ee9e656ec32cc382f7acc552d0b4c9bf952c (diff)
downloadxorg-lib-libXt-fb78a7c881adbe46f1f8c6e8e429bc8963c9b3e8.tar.gz
fix unused-assignment warnings (clang --analyze)
Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
Diffstat (limited to 'src/Event.c')
-rw-r--r--src/Event.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Event.c b/src/Event.c
index a0e452c..7bfb24a 100644
--- a/src/Event.c
+++ b/src/Event.c
@@ -315,7 +315,6 @@ AddEventHandler(
if (position == XtListHead) {
p->next = widget->core.event_table;
widget->core.event_table = p;
- pp = &widget->core.event_table;
} else {
*pp = p;
p->next = NULL;