changeset 4856:49574e8c4d0b

vis_playback_stop(): don't bother with assigning values when they are assigned again later. Found with LLVM static analyzer.
author William Pitcock <nenolod@atheme.org>
date Thu, 16 Apr 2009 20:01:24 -0500
parents bc6212d7fab1
children a8f1e4b43ec4
files src/audlegacy/visualization.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/audlegacy/visualization.c	Thu Apr 16 19:57:44 2009 -0500
+++ b/src/audlegacy/visualization.c	Thu Apr 16 20:01:24 2009 -0500
@@ -85,7 +85,7 @@
 void
 vis_playback_stop(void)
 {
-    GList *node = vp_data.enabled_list;
+    GList *node;
     VisPlugin *vp;
 
     if (!vp_data.playback_started)