Remmove a dead assignment.
authorMatthias Clasen <mclasen@redhat.com>
Mon, 7 Sep 2009 07:07:22 +0000 (03:07 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Mon, 7 Sep 2009 07:07:22 +0000 (03:07 -0400)
Spotted by clang.

gio/gbufferedinputstream.c

index d49b528..50b5d8e 100644 (file)
@@ -247,13 +247,11 @@ g_buffered_input_stream_set_property (GObject      *object,
                                       const GValue *value,
                                       GParamSpec   *pspec)
 {
-  GBufferedInputStreamPrivate *priv;
   GBufferedInputStream        *bstream;
 
   bstream = G_BUFFERED_INPUT_STREAM (object);
-  priv = bstream->priv;
 
-  switch (prop_id) 
+  switch (prop_id)
     {
     case PROP_BUFSIZE:
       g_buffered_input_stream_set_buffer_size (bstream, g_value_get_uint (value));