mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-22 17:08:53 +02:00
Remmove a dead assignment.
Spotted by clang.
This commit is contained in:
@@ -247,13 +247,11 @@ g_buffered_input_stream_set_property (GObject *object,
|
|||||||
const GValue *value,
|
const GValue *value,
|
||||||
GParamSpec *pspec)
|
GParamSpec *pspec)
|
||||||
{
|
{
|
||||||
GBufferedInputStreamPrivate *priv;
|
|
||||||
GBufferedInputStream *bstream;
|
GBufferedInputStream *bstream;
|
||||||
|
|
||||||
bstream = G_BUFFERED_INPUT_STREAM (object);
|
bstream = G_BUFFERED_INPUT_STREAM (object);
|
||||||
priv = bstream->priv;
|
|
||||||
|
|
||||||
switch (prop_id)
|
switch (prop_id)
|
||||||
{
|
{
|
||||||
case PROP_BUFSIZE:
|
case PROP_BUFSIZE:
|
||||||
g_buffered_input_stream_set_buffer_size (bstream, g_value_get_uint (value));
|
g_buffered_input_stream_set_buffer_size (bstream, g_value_get_uint (value));
|
||||||
|
Reference in New Issue
Block a user